* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #FAFBFC;
  color: #1A2028;
  font-family: "Segoe UI", system-ui, -apple-system, "Roboto", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.num {
  font-variant-numeric: tabular-nums;
}
.util {
  background: #F3F5F7;
  color: #6B7683;
  font-size: 13px;
  border-bottom: 1px solid #E3E7EC;
}
.util .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 40px;
}
.util a {
  color: #6B7683;
}
.util a:hover {
  color: #E11D2A;
}
.util .loc {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.util .city {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1F2733;
  font-weight: 600;
  flex-shrink: 0;
}
.util .city .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E11D2A;
}
.util .addr {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6B7683;
  min-width: 0;
  white-space: nowrap;
}
.util .addr .pin {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}
.util .addr:hover,
.util .addr:focus-visible {
  color: #E11D2A;
}
.util .mid {
  display: flex;
  gap: 18px;
  margin: 0 auto;
}
.util .phones {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.util .phone {
  color: #1F2733;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .util .wrap {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 14px;
  }
  .util .loc {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .util .addr {
    white-space: normal;
  }
  .util .phones {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
  }
}
.addr-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.addr-link:hover,
.addr-link:focus-visible {
  color: #E11D2A;
}
header.main {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(227, 231, 236, 0.65);
}
header.main .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 80px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
  transition: background 0.15s;
}
.catalog-btn:hover {
  background: #B71722;
}
.catalog-btn .bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.catalog-btn .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}
.mainnav {
  background: #FFFFFF;
  border-bottom: 1px solid #E3E7EC;
}
.mainnav .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 56px;
  position: relative;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navlinks a {
  font-weight: 600;
  font-size: 14px;
  color: #1F2733;
}
.navlinks a:hover {
  color: #E11D2A;
}
.mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  width: 620px;
  max-width: calc(100vw - 40px);
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  padding: 16px;
  z-index: 60;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 16px;
}
.mega.open {
  display: grid;
}
.mega a {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  color: #1F2733;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.12s, color 0.12s;
}
.mega a:hover {
  background: #FEEBEC;
  color: #E11D2A;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  background: #FFFFFF;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1F2733;
  border-radius: 2px;
}
.burger:hover {
  border-color: #2C3745;
}
#mobileNav .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#mobileNav .offcanvas-logo {
  height: 20px;
  width: auto;
}
#mobileNav .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#mobileNav .mobile-links a {
  padding: 11px 4px;
  font-weight: 700;
  font-size: 15px;
  color: #1F2733;
  border-bottom: 1px solid #E3E7EC;
}
#mobileNav .mobile-links a:hover {
  color: #E11D2A;
}
#mobileNav .mobile-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#mobileNav .mobile-cats h6 {
  margin: 0 0 6px;
  color: #6B7683;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#mobileNav .mobile-cats a {
  padding: 9px 4px;
  color: #1F2733;
  font-size: 14px;
  font-weight: 600;
}
#mobileNav .mobile-cats a:hover {
  color: #E11D2A;
}
.search-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.search-tabs {
  display: flex;
  gap: 4px;
}
.search-tabs .search-tab {
  border: 0;
  background: transparent;
  padding: 2px 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: #6B7683;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.search-tabs .search-tab:hover {
  color: #1F2733;
}
.search-tabs .search-tab.active {
  color: #E11D2A;
  border-bottom-color: #E11D2A;
}
.search {
  flex: 1;
  display: flex;
  min-width: 0;
}
.search input {
  flex: 1;
  height: 48px;
  border: 1.5px solid #E3E7EC;
  border-right: 0;
  border-radius: 7px 0 0 7px;
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.search input:focus {
  border-color: #2C3745;
}
.search button {
  height: 48px;
  padding: 0 22px;
  background: #1F2733;
  color: #FFFFFF;
  border: 0;
  border-radius: 0 7px 7px 0;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search button:hover {
  background: #2C3745;
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}
.icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #6B7683;
  font-size: 11px;
  cursor: pointer;
  min-width: 52px;
}
.icon-btn:hover {
  color: #1F2733;
  background: #F3F5F7;
}
.icon-btn svg {
  width: 22px;
  height: 22px;
}
.icon-btn .badge {
  position: absolute;
  top: 0;
  right: 6px;
  background: #E11D2A;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
footer {
  background: #1F2733;
  color: #AEB7C0;
  margin-top: 56px;
  padding: 40px 0 100px;
  position: relative;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 0.8fr 1fr;
  gap: 30px;
}
footer h5 {
  color: #FFFFFF;
  font-size: 15px;
  margin: 0 0 13px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer a {
  color: #AEB7C0;
  font-size: 14px;
}
footer a:hover {
  color: #FFFFFF;
}
footer .flogo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
footer .flogo-img {
  height: 26px;
  width: auto;
  display: block;
}
footer .fcontact {
  font-size: 13px;
  margin: 8px 0 4px;
}
footer .fcontact + .fcontact {
  margin: 0;
}
footer .phone {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px;
}
footer .phone a {
  color: inherit;
}
footer .phone.alt {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}
footer .soc {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
footer .soc a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #33414F;
  display: grid;
  place-items: center;
  color: #FFFFFF;
}
footer .soc a:hover {
  background: #E11D2A;
}
footer .bottom {
  border-top: 1px solid #313C4A;
  margin-top: 30px;
  padding-top: 16px;
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #7C8794;
  flex-wrap: wrap;
}
footer .bottom .spacer {
  margin-left: auto;
}
.support {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.support .menu {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.support.open .menu {
  display: flex;
}
.support .menu a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  display: grid;
  place-items: center;
  color: #1F2733;
}
.support .menu a:hover {
  color: #E11D2A;
}
.support .fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.support .fab svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 1080px) {
  .util .mid {
    display: none;
  }
  .util .wrap {
    justify-content: space-between;
  }
  footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  header.main .wrap {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 20px;
    gap: 12px;
  }
  .logo-img {
    height: 24px;
  }
  .search-group {
    order: 5;
    flex-basis: 100%;
  }
  .head-actions {
    flex-basis: 100%;
    justify-content: space-around;
  }
  footer .cols {
    grid-template-columns: 1fr;
  }
  .mainnav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mega {
    left: 20px;
    right: 0;
    width: auto;
    max-width: calc(100vw - 40px);
    grid-template-columns: 1fr;
  }
  .support {
    right: 14px;
    bottom: 14px;
  }
  .support .fab {
    width: 48px;
    height: 48px;
  }
  .support .fab svg {
    width: 22px;
    height: 22px;
  }
}
.card {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  transform: translateY(-3px);
}
.card .fig {
  position: relative;
  aspect-ratio: 1 / 0.8;
  background: linear-gradient(160deg, #FBFCFD, #EEF1F4);
  display: grid;
  place-items: center;
  color: #1F2733;
}
.card .fig svg {
  width: 96px;
  height: 96px;
  opacity: 0.9;
}
.card .fig .fig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .flag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E11D2A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.card .flag.amber {
  background: #FFB800;
  color: #3A2C00;
}
.card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(26, 32, 40, 0.04), 0 1px 8px rgba(26, 32, 40, 0.03);
  display: grid;
  place-items: center;
  color: #94A0AC;
}
.card .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.card .brand {
  font-size: 11px;
  color: #94A0AC;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.card .title {
  font-size: 14px;
  font-weight: 600;
  color: #1F2733;
  line-height: 1.34;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .rate {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #6B7683;
}
.card .rate .stars {
  color: #FFB800;
  letter-spacing: 1px;
}
.card .stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2FA84F;
  font-size: 12px;
  font-weight: 600;
}
.card .stock i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2FA84F;
}
.card .foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card .price {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.card .price s {
  font-size: 12px;
  font-weight: 500;
  color: #94A0AC;
  margin-left: 5px;
}
.card .buy {
  margin-left: auto;
  height: 40px;
  padding: 0 15px;
  border-radius: 9px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.card .buy:hover {
  background: #B71722;
}
.card .buy svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 420px) {
  .card .foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .card .price {
    white-space: nowrap;
  }
  .card .price s {
    display: block;
    margin-left: 0;
    white-space: nowrap;
  }
  .card .buy {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}
.catcard {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.catcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
  border-color: transparent;
}
.catcard .top .ic {
  color: #E11D2A;
  height: 30px;
}
.catcard .top .ic svg {
  width: 28px;
  height: 28px;
}
.catcard h4 {
  margin: 8px 0 2px;
  font-size: 15px;
  color: #1F2733;
  font-weight: 700;
}
.catcard .cnt {
  font-size: 12px;
  color: #94A0AC;
}
.catcard.hot h4 {
  color: #E11D2A;
}
.catcard .pic {
  margin-top: auto;
  text-align: center;
}
.catcard .pic svg {
  width: 88px;
  height: 78px;
}
.catmini {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: 0.16s;
}
.catmini .ic {
  color: #E11D2A;
  transition: 0.16s;
}
.catmini .ic svg {
  width: 26px;
  height: 26px;
}
.catmini b {
  font-size: 14px;
  color: #1F2733;
  font-weight: 700;
}
.catmini span {
  font-size: 12px;
  color: #94A0AC;
}
.catmini:hover {
  background: #E11D2A;
  border-color: #E11D2A;
}
.catmini:hover .ic,
.catmini:hover b,
.catmini:hover span {
  color: #FFFFFF;
}
.chk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #1A2028;
  padding: 5px 0;
  cursor: pointer;
}
.chk input {
  width: 17px;
  height: 17px;
  accent-color: #E11D2A;
}
.chk .cnt {
  margin-left: auto;
  color: #94A0AC;
  font-size: 12px;
}
.range {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.range input {
  width: 50%;
  height: 38px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 13px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}
.chips span {
  border: 1.5px solid #E3E7EC;
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 13px;
  cursor: pointer;
}
.chips span.on {
  border-color: #E11D2A;
  background: #FEEBEC;
  color: #E11D2A;
  font-weight: 600;
}
.tagf {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FEEBEC;
  color: #E11D2A;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
.tagf b {
  cursor: pointer;
}
.field label {
  display: block;
  font-size: 13px;
  color: #6B7683;
  margin-bottom: 6px;
  font-weight: 600;
}
.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
}
.field input:focus,
.field select:focus {
  border-color: #2C3745;
}
.pager {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 28px 0 8px;
}
.pager a {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid #E3E7EC;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 600;
  background: #FFFFFF;
}
.pager a.on {
  background: #E11D2A;
  color: #FFFFFF;
  border-color: #E11D2A;
}
.pager a:hover:not(.on) {
  border-color: #E11D2A;
  color: #E11D2A;
}
.cathero {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 14px;
  margin: 20px 0 8px;
}
.feature {
  background: linear-gradient(150deg, #232D3B, #1A222D);
  border-radius: 12px;
  padding: 20px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.feature .ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(225, 29, 42, 0.9);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.feature .ic svg {
  width: 24px;
  height: 24px;
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
.feature p {
  margin: 0;
  color: #AEB7C0;
  font-size: 12.5px;
}
.feature .art {
  margin-top: auto;
  padding-top: 14px;
  text-align: center;
  color: #E11D2A;
}
.feature .art img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.feature .art svg {
  width: 130px;
  height: 110px;
  opacity: 0.95;
}
.feature .go {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 7px;
  align-self: flex-start;
}
.catgrid {
  display: block;
}
.catrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.catcard {
  padding-bottom: 0;
}
.catcard .pic {
  margin: 10px -16px 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.catcard .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top .ic img.ic-real {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.top .ic svg.ic-fallback {
  display: none;
}
section {
  margin: 34px 0;
}
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  color: #1F2733;
  letter-spacing: -0.01em;
}
.sec-head a {
  margin-left: auto;
  color: #6B7683;
  font-weight: 600;
  font-size: 14px;
}
.sec-head a:hover {
  color: #E11D2A;
}
.prow {
  position: relative;
}
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.svcs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  background: #1F2733 center / cover no-repeat;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(20, 26, 34, 0.32);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 26, 34, 0.15) 0%, rgba(20, 26, 34, 0.5) 52%, rgba(20, 26, 34, 0.88) 100%);
}
.svc.a {
  background-image: url('../../img/services/to.jpg');
}
.svc.b {
  background-image: url('../../img/services/tyres.jpg');
}
.svc.c {
  background-image: url('../../img/services/fleet.jpg');
}
.svc .ico {
  display: none;
}
.svc h3 {
  position: relative;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.svc p {
  position: relative;
  margin: 0;
  color: #D5DBE1;
  font-size: 13px;
}
.svc .go {
  position: relative;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap 0.18s ease;
}
.svc:hover .go {
  gap: 10px;
}
.adv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 14px;
  padding: 22px;
}
.adv .item {
  display: flex;
  gap: 13px;
  align-items: center;
}
.adv .item .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.adv .item .ic svg {
  width: 24px;
  height: 24px;
}
.adv .item b {
  display: block;
  font-size: 14px;
  color: #1F2733;
}
.adv .item span {
  font-size: 12px;
  color: #6B7683;
}
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brands .b {
  position: relative;
  flex: 1;
  min-width: 150px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 16px 20px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.brands .b::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border: 6px solid #E3E7EC;
  border-radius: 50%;
}
.brands .b::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #E11D2A;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.18s;
}
.brands .b b {
  position: relative;
  display: block;
  font-weight: 800;
  color: #1F2733;
  letter-spacing: 0.02em;
  font-size: 17px;
}
.brands .b span {
  position: relative;
  display: block;
  margin-top: 3px;
  color: #6B7683;
  font-size: 12px;
}
.brands .b:hover {
  transform: translateY(-3px);
  border-color: #94A0AC;
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
}
.brands .b:hover::after {
  transform: scaleX(1);
}
.promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promos .promo {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E3E7EC;
  background: #FFFFFF;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  aspect-ratio: 7 / 2;
}
.promos .promo:first-child {
  grid-column: 1 / -1;
}
.promos .promo:hover {
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
}
.promos .promo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.promos .promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 66%);
  pointer-events: none;
}
.promos .promo .p-txt {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 6%;
  max-width: 60%;
}
.promos .promo .p-txt b {
  font-size: 20px;
  font-weight: 800;
  color: #1F2733;
  line-height: 1.15;
}
.promos .promo .p-txt span {
  font-size: 13px;
  color: #6B7683;
}
.promos .promo .p-txt em {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #E11D2A;
  margin-top: 5px;
}
.promos .promo:hover .p-txt em {
  text-decoration: underline;
}
.news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.newscard {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.newscard:hover {
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  transform: translateY(-3px);
}
.newscard img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}
.newscard .date {
  display: block;
  font-size: 11px;
  color: #94A0AC;
  padding: 10px 12px 0;
}
.newscard h5 {
  font-size: 13.5px;
  color: #1F2733;
  font-weight: 700;
  margin: 4px 12px 12px;
  line-height: 1.35;
}
@media (max-width: 1080px) {
  .cathero {
    grid-template-columns: 1fr;
  }
  .feature {
    min-height: 180px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .feature .art {
    margin: 0;
    flex: 0 0 auto;
  }
  .feature .art svg {
    width: 100px;
    height: 80px;
  }
  .feature .art img {
    width: 132px;
  }
  .catrow {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .feature {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .feature .art {
    margin: 14px 0 0;
  }
  .feature .art img {
    width: 100%;
  }
  .feature .art svg {
    width: 130px;
    height: 110px;
  }
}
@media (max-width: 720px) {
  .catrow {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .svcs {
    grid-template-columns: 1fr;
  }
  .adv {
    grid-template-columns: 1fr 1fr;
  }
  .promos {
    grid-template-columns: 1fr;
  }
  .promos .promo .p-txt {
    max-width: 72%;
    padding: 0 5%;
  }
  .promos .promo .p-txt b {
    font-size: 15px;
  }
  .promos .promo .p-txt span {
    font-size: 11.5px;
  }
  .news {
    grid-template-columns: 1fr 1fr;
  }
}
.crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #94A0AC;
  padding: 16px 0 4px;
  flex-wrap: wrap;
}
.crumbs a:hover {
  color: #E11D2A;
}
.crumbs .sep {
  color: #E3E7EC;
}
h1.page {
  font-size: 28px;
  font-weight: 800;
  color: #1F2733;
  margin: 8px 0 4px;
}
.found {
  color: #6B7683;
  font-size: 14px;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.catalog-page .catalog {
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 22px;
  padding-bottom: 40px;
}
.catalog-page .filters {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 6px 18px;
  align-self: start;
  position: sticky;
  top: 66px;
}
.catalog-page .fclose {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #FAFBFC;
  color: #6B7683;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.catalog-page .filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  color: #1A2028;
  cursor: pointer;
}
.catalog-page .fgroup {
  border-bottom: 1px solid #E3E7EC;
  padding: 16px 0;
}
.catalog-page .fgroup:last-child {
  border-bottom: 0;
}
.catalog-page .fgroup h4 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #1F2733;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.catalog-page .fgroup h4 .chev {
  color: #94A0AC;
}
.catalog-page .apply {
  width: 100%;
  height: 42px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  margin: 6px 0 4px;
}
.catalog-page .apply:hover {
  background: #B71722;
}
.catalog-page .reset {
  width: 100%;
  height: 38px;
  background: transparent;
  color: #6B7683;
  border: 0;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}
.catalog-page .toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.catalog-page .toolbar .active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: 4px;
}
.catalog-page .toolbar .view {
  margin-left: auto;
  display: flex;
  gap: 4px;
}
.catalog-page .toolbar .view button {
  width: 40px;
  height: 40px;
  border: 1.5px solid #E3E7EC;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  color: #6B7683;
  display: grid;
  place-items: center;
}
.catalog-page .toolbar .view button.on {
  border-color: #E11D2A;
  color: #E11D2A;
}
.catalog-page .sel {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.catalog-page .sel .chev {
  color: #94A0AC;
  pointer-events: none;
}
.catalog-page .sel select {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1A2028;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2px;
}
.catalog-page .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.catalog-page .grid.list {
  grid-template-columns: 1fr;
}
.catalog-page .empty {
  color: #6B7683;
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 1080px) {
  .catalog-page .catalog {
    grid-template-columns: 1fr;
  }
  .catalog-page .filters-toggle {
    display: inline-flex;
  }
  .catalog-page .filters {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 200;
    border-radius: 0;
    padding: 56px 20px 24px;
    overflow-y: auto;
  }
  .catalog-page .filters.open {
    display: block;
  }
  .catalog-page .fclose {
    display: grid;
    place-items: center;
  }
  .catalog-page .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .catalog-page .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.product-page .product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  padding-bottom: 20px;
}
.product-page .gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
}
.product-page .thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-page .thumbs .t {
  width: 72px;
  height: 72px;
  border: 1.5px solid #E3E7EC;
  border-radius: 9px;
  background: linear-gradient(160deg, #FBFCFD, #EEF1F4);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.product-page .thumbs .t.on {
  border-color: #E11D2A;
}
.product-page .thumbs .t svg {
  width: 40px;
  height: 40px;
  opacity: 0.85;
}
.product-page .thumbs .t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-page .main-img {
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  background: linear-gradient(160deg, #FFFFFF, #EEF1F4);
  display: grid;
  place-items: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.product-page .main-img svg {
  width: 240px;
  height: 240px;
}
.product-page .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-page .main-img .flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 7px;
}
.product-page .pinfo h1 {
  font-size: 24px;
  font-weight: 800;
  color: #1F2733;
  margin: 0 0 10px;
  line-height: 1.25;
}
.product-page .pmeta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: #6B7683;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-page .pmeta .stars {
  color: #FFB800;
}
.product-page .pmeta .art {
  color: #94A0AC;
}
.product-page .buybox {
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(26, 32, 40, 0.04), 0 1px 8px rgba(26, 32, 40, 0.03);
}
.product-page .buybox .price {
  font-size: 34px;
  font-weight: 800;
  color: #1A2028;
  font-variant-numeric: tabular-nums;
}
.product-page .buybox .price s {
  font-size: 16px;
  color: #94A0AC;
  font-weight: 500;
  margin-left: 10px;
}
.product-page .buybox .stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2FA84F;
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 18px;
}
.product-page .buybox .stock i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2FA84F;
}
.product-page .buybox .credit {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #6B7683;
}
.product-page .buyrow {
  display: flex;
  gap: 10px;
}
.product-page .qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  height: 52px;
}
.product-page .qty button {
  width: 44px;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #6B7683;
}
.product-page .qty span {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.product-page .addcart {
  flex: 1;
  height: 52px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.product-page .addcart:hover {
  background: #B71722;
}
.product-page .addcart svg {
  width: 20px;
  height: 20px;
}
.product-page .perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.product-page .perk {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 13px;
  color: #1A2028;
}
.product-page .perk .ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.product-page .perk .ic svg {
  width: 20px;
  height: 20px;
}
.product-page .perk b {
  display: block;
}
.product-page .perk span {
  color: #6B7683;
  font-size: 12px;
}
.product-page .ptabs {
  border-bottom: 1px solid #E3E7EC;
  display: flex;
  gap: 6px;
  margin: 34px 0 20px;
}
.product-page .ptabs button {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #6B7683;
  padding: 12px 4px;
  margin-right: 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.product-page .ptabs button.on {
  color: #1F2733;
  border-bottom-color: #E11D2A;
}
.product-page .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.product-page .specs .row {
  display: flex;
  padding: 11px 0;
  border-bottom: 1px dashed #E3E7EC;
  font-size: 14px;
}
.product-page .specs .row .k {
  flex: 0 0 45%;
  color: #6B7683;
}
.product-page .specs .row .v {
  color: #1A2028;
  font-weight: 600;
}
@media (max-width: 1080px) {
  .product-page .product {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .product-page .gallery {
    grid-template-columns: 1fr;
  }
  .product-page .thumbs {
    flex-direction: row;
  }
  .product-page .specs {
    grid-template-columns: 1fr;
  }
  .product-page .ptabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-page .ptabs::-webkit-scrollbar {
    display: none;
  }
  .product-page .ptabs button {
    flex: 0 0 auto;
  }
}
.services-page .svc-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: stretch;
  gap: 32px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 40px;
  color: #FFFFFF;
  margin-bottom: 30px;
  background: radial-gradient(120% 140% at 85% 10%, rgba(225, 29, 42, 0.3), transparent 55%), linear-gradient(120deg, #1F2733, #2C3745 60%, #38465a);
}
.services-page .svc-hero h2 {
  font-size: 30px;
  margin: 0 0 8px;
  font-weight: 800;
}
.services-page .svc-hero p {
  color: #C6CDD5;
  max-width: 480px;
  margin: 0;
}
.services-page .svc-hero-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
}
.services-page .svc-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-page .svc-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #1F2733 0%, rgba(31, 39, 51, 0) 55%);
}
.services-page .svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}
.services-page .scard {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.16s;
}
.services-page .scard:hover {
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  transform: translateY(-3px);
}
.services-page .scard .ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.services-page .scard .ic svg {
  width: 28px;
  height: 28px;
}
.services-page .scard h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #1F2733;
}
.services-page .scard p {
  margin: 0 0 16px;
  color: #6B7683;
  font-size: 14px;
  flex: 1;
}
.services-page .scard .foot {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-page .scard .from {
  font-size: 13px;
  color: #6B7683;
}
.services-page .scard .from b {
  font-size: 19px;
  color: #1A2028;
  display: block;
}
.services-page .scard .from .per {
  font-size: 12px;
}
.services-page .scard .book {
  margin-left: auto;
  height: 42px;
  padding: 0 18px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.services-page .scard .book:hover {
  background: #B71722;
}
.services-page .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}
.services-page .step {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 22px;
  position: relative;
}
.services-page .step .n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1F2733;
  color: #FFFFFF;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.services-page .step h4 {
  margin: 0 0 4px;
  color: #1F2733;
}
.services-page .step p {
  margin: 0;
  color: #6B7683;
  font-size: 14px;
}
.services-page .book-form {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 44px;
}
.services-page .book-form h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 22px;
  color: #1F2733;
}
.services-page .book-form .full {
  grid-column: 1 / -1;
}
.services-page .submit {
  height: 52px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.services-page .submit:hover {
  background: #B71722;
}
@media (max-width: 1080px) {
  .services-page .svc-grid,
  .services-page .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-page .svc-hero {
    grid-template-columns: 1fr 240px;
    gap: 24px;
  }
}
@media (max-width: 720px) {
  .services-page .svc-grid,
  .services-page .steps,
  .services-page .book-form {
    grid-template-columns: 1fr;
  }
  .services-page .svc-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .services-page .svc-hero-img {
    min-height: 160px;
  }
}
.lead {
  color: #6B7683;
  font-size: 16px;
  max-width: 660px;
  margin: 0 0 24px;
}
.content-page .about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}
.content-page .about-grid p {
  color: #1A2028;
  line-height: 1.7;
  margin: 0 0 14px;
}
.content-page .about-grid .about-img {
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  background: #FFFFFF;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 20px;
}
.content-page .about-grid .about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-page .about-grid .side {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
  align-self: start;
}
.content-page .about-grid .side h4 {
  margin: 0 0 14px;
  color: #1F2733;
}
.content-page .stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.content-page .stat {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.content-page .stat b {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #E11D2A;
}
.content-page .stat span {
  font-size: 13px;
  color: #6B7683;
}
.content-page .vacs {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
}
.content-page .vac {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.content-page .vac:hover {
  border-color: #2C3745;
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
  transform: translateY(-2px);
}
.content-page .vac .vac-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.content-page .vac .vac-head h3 {
  margin: 0;
  font-size: 17px;
  color: #1F2733;
}
.content-page .vac .vac-pay {
  font-weight: 700;
  color: #E11D2A;
  white-space: nowrap;
}
.content-page .vac .vac-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 9px 0 12px;
  color: #6B7683;
  font-size: 13px;
}
.content-page .vac .vac-meta span {
  position: relative;
}
.content-page .vac .vac-meta span + span::before {
  content: "·";
  position: absolute;
  left: -11px;
}
.content-page .vac p {
  color: #1A2028;
  line-height: 1.6;
  margin: 0 0 14px;
}
.content-page .contacts {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.content-page .cbox {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-page .cline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.content-page .cline .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.content-page .cline .ic svg {
  width: 20px;
  height: 20px;
}
.content-page .cline b {
  display: block;
  color: #1F2733;
}
.content-page .cline span {
  color: #6B7683;
  font-size: 14px;
}
.content-page .map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E3E7EC;
  min-height: 320px;
  position: relative;
  background: linear-gradient(135deg, #E9EDF1, #DDE3E9);
  display: grid;
  place-items: center;
  color: #94A0AC;
}
.content-page .map .pin {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: #E11D2A;
  transform: rotate(-45deg);
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
}
.content-page .map .lbl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px rgba(26, 32, 40, 0.04), 0 1px 8px rgba(26, 32, 40, 0.03);
  font-size: 13px;
  color: #1F2733;
  font-weight: 600;
}
@media (max-width: 1080px) {
  .content-page .about-grid,
  .content-page .contacts {
    grid-template-columns: 1fr;
  }
  .content-page .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .content-page .stat-row {
    grid-template-columns: 1fr;
  }
}
.content-page .about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 40px;
}
.content-page .about-cta b {
  display: block;
  font-size: 18px;
  color: #1F2733;
  margin-bottom: 4px;
}
.content-page .about-cta span {
  color: #6B7683;
  font-size: 14px;
}
.content-page .about-cta .btn-go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .about-cta .btn-go:hover {
  background: #B71722;
}
.content-page .stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 40px;
}
.content-page .stores .cline {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 18px;
}
.content-page .quick-form {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 40px;
}
.content-page .quick-form .full {
  grid-column: 1 / -1;
}
.content-page .quick-form .field textarea {
  width: 100%;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
  resize: vertical;
}
.content-page .quick-form .field textarea:focus {
  border-color: #2C3745;
}
.content-page .q-submit {
  height: 52px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .q-submit:hover {
  background: #B71722;
}
.content-page .form-note {
  margin: 0;
  color: #94A0AC;
  font-size: 12.5px;
}
.content-page .form-note + .sec-head {
  margin-top: 32px;
}
@media (max-width: 720px) {
  .content-page .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .stores {
    grid-template-columns: 1fr;
  }
  .content-page .quick-form {
    grid-template-columns: 1fr;
  }
}
.content-page .method-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.content-page .method-card {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
}
.content-page .method-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.content-page .method-card .ic svg {
  width: 24px;
  height: 24px;
}
.content-page .method-card h4 {
  margin: 0 0 6px;
  color: #1F2733;
  font-size: 16px;
}
.content-page .method-card p {
  margin: 0;
  color: #6B7683;
  font-size: 13.5px;
  line-height: 1.55;
}
.content-page .tbl-wrap {
  overflow-x: auto;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  background: #FFFFFF;
  margin-bottom: 12px;
}
.content-page .tbl {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}
.content-page .tbl th,
.content-page .tbl td {
  text-align: left;
  padding: 14px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.content-page .tbl thead th {
  background: #FAFBFC;
  color: #1F2733;
  font-weight: 700;
  border-bottom: 1px solid #E3E7EC;
}
.content-page .tbl tbody td {
  color: #6B7683;
}
.content-page .tbl tbody td:first-child {
  color: #1A2028;
  font-weight: 600;
}
.content-page .tbl tbody tr:nth-child(even) {
  background: #FAFBFC;
}
.content-page .tbl tbody tr:not(:last-child) td {
  border-bottom: 1px solid #E3E7EC;
}
.content-page .steps {
  display: flex;
  margin-bottom: 40px;
}
.content-page .step {
  flex: 1;
  position: relative;
  padding: 0 18px;
  text-align: center;
}
.content-page .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: #E3E7EC;
}
.content-page .step .n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1F2733;
  color: #FFFFFF;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.content-page .step h4 {
  margin: 0 0 4px;
  color: #1F2733;
  font-size: 15px;
}
.content-page .step p {
  margin: 0;
  color: #6B7683;
  font-size: 13px;
  line-height: 1.5;
}
.content-page .faq {
  margin-bottom: 8px;
}
.content-page .faq-item {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.content-page .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #1F2733;
  cursor: pointer;
}
.content-page .faq-q .mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.content-page .faq-q .mark::before {
  content: "+";
}
.content-page .faq-q[aria-expanded="true"] .mark::before {
  content: "\2212";
}
.content-page .faq-a {
  padding: 0 22px 20px;
  color: #6B7683;
  font-size: 14px;
  line-height: 1.65;
}
.content-page .legal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.content-page .legal-block {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
}
.content-page .legal-block h4 {
  margin: 0 0 10px;
  color: #1F2733;
}
.content-page .legal-block p {
  margin: 0 0 8px;
  color: #6B7683;
  font-size: 14px;
  line-height: 1.6;
}
.content-page .legal-block p:last-child {
  margin-bottom: 0;
}
.content-page .legal-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #6B7683;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 1080px) {
  .content-page .method-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .content-page .method-cards {
    grid-template-columns: 1fr;
  }
  .content-page .legal-cols {
    grid-template-columns: 1fr;
  }
  .content-page .steps {
    flex-direction: column;
    gap: 24px;
  }
  .content-page .step {
    padding: 0;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .content-page .step::after {
    display: none;
  }
  .content-page .step .n {
    margin: 0;
    flex-shrink: 0;
  }
}
.content-page .fb-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.content-page .form {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  align-content: start;
}
.content-page .form.hide {
  display: none;
}
.content-page .form h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #1F2733;
}
.content-page .form .full {
  grid-column: 1 / -1;
}
.content-page .form .field textarea {
  width: 100%;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
  resize: vertical;
}
.content-page .form .field textarea:focus {
  border-color: #2C3745;
}
.content-page .form .field .err-msg {
  display: none;
  margin-top: 6px;
  color: #E11D2A;
  font-size: 12.5px;
}
.content-page .form .field.err input,
.content-page .form .field.err select,
.content-page .form .field.err textarea {
  border-color: #E11D2A;
}
.content-page .form .field.err .err-msg {
  display: block;
}
.content-page .form .field.consent .chk {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #1A2028;
  cursor: pointer;
}
.content-page .form .field.consent .chk input {
  width: 17px;
  height: 17px;
  accent-color: #E11D2A;
  margin-top: 2px;
  flex-shrink: 0;
}
.content-page .form .field.consent .chk a {
  color: #E11D2A;
}
.content-page .form .submit {
  height: 52px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .form .submit:hover {
  background: #B71722;
}
.content-page .form-success {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 52px 32px;
  text-align: center;
}
.content-page .form-success .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FEEBEC;
  color: #E11D2A;
  font-size: 26px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.content-page .form-success h3 {
  margin: 0 0 8px;
  color: #1F2733;
}
.content-page .form-success p {
  margin: 0;
  color: #6B7683;
  font-size: 14px;
  line-height: 1.6;
}
.content-page .legal {
  max-width: 68ch;
}
.content-page .legal h2 {
  margin: 40px 0 14px;
  font-size: 19px;
  color: #1F2733;
}
.content-page .legal h2:first-child {
  margin-top: 0;
}
.content-page .legal p {
  margin: 0 0 14px;
  color: #6B7683;
  font-size: 15px;
  line-height: 1.75;
}
.content-page .legal ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #6B7683;
  font-size: 15px;
  line-height: 1.8;
}
.content-page .legal a {
  color: #E11D2A;
}
.content-page .legal .legal-note {
  margin-top: 40px;
  background: #FAFBFC;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 20px 22px;
  color: #6B7683;
  font-size: 13.5px;
  line-height: 1.6;
}
@media (max-width: 1080px) {
  .content-page .fb-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .content-page .form {
    grid-template-columns: 1fr;
  }
  .content-page .form-success {
    padding: 40px 22px;
  }
}
.content-page .demo-note-mb {
  margin-bottom: 22px;
}
.content-page .demo-note-mt {
  margin-top: 22px;
}
.content-page .news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.content-page .news-list .newscard h5 {
  margin-bottom: 6px;
}
.content-page .news-list .newscard .excerpt {
  margin: 0 12px 14px;
  color: #6B7683;
  font-size: 12.5px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-page .related-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-page .article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.content-page .article-meta .date {
  font-size: 13px;
  color: #94A0AC;
}
.content-page .article-meta .rubric {
  font-size: 11.5px;
  font-weight: 700;
  color: #E11D2A;
  background: #FEEBEC;
  padding: 4px 11px;
  border-radius: 20px;
}
.content-page .article-hero {
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.content-page .article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
}
.content-page .article {
  max-width: 66ch;
}
.content-page .article p {
  margin: 0 0 16px;
  color: #1A2028;
  font-size: 15.5px;
  line-height: 1.75;
}
.content-page .article h2 {
  margin: 36px 0 14px;
  font-size: 21px;
  color: #1F2733;
}
.content-page .article h2:first-child {
  margin-top: 0;
}
.content-page .article ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #1A2028;
  font-size: 15.5px;
  line-height: 1.85;
}
.content-page .article ul li {
  margin-bottom: 6px;
}
.content-page .article blockquote {
  margin: 26px 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid #E11D2A;
  color: #1F2733;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
}
.content-page .article .article-img {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin: 8px 0 26px;
}
.content-page .share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 44px;
  padding-top: 24px;
  border-top: 1px solid #E3E7EC;
}
.content-page .share span {
  font-size: 13px;
  color: #6B7683;
  font-weight: 600;
}
.content-page .share a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 800;
}
.content-page .share a:hover {
  background: #E11D2A;
  color: #FFFFFF;
}
@media (max-width: 1080px) {
  .content-page .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-page .related-news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .content-page .news-list {
    grid-template-columns: 1fr;
  }
  .content-page .related-news {
    grid-template-columns: 1fr;
  }
  .content-page .article {
    max-width: 100%;
  }
  .content-page .article-hero img {
    aspect-ratio: 16 / 10;
  }
}
.content-page .promo-filter {
  display: inline-flex;
  gap: 4px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}
.content-page .promo-filter button {
  border: none;
  background: transparent;
  color: #6B7683;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.content-page .promo-filter button:hover {
  color: #1F2733;
}
.content-page .promo-filter button.active {
  background: #E11D2A;
  color: #FFFFFF;
}
.content-page .conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.content-page .conditions .cond {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 16px 18px;
}
.content-page .conditions .cond .cond-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FEEBEC;
  color: #E11D2A;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.content-page .conditions .cond .cond-ic svg {
  width: 20px;
  height: 20px;
}
.content-page .conditions .cond b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6B7683;
  margin-bottom: 2px;
}
.content-page .conditions .cond span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1F2733;
}
.content-page .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 8px 0 40px;
}
@media (max-width: 1080px) {
  .content-page .conditions {
    grid-template-columns: 1fr;
  }
  .content-page .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .content-page .promo-filter {
    width: 100%;
  }
  .content-page .promo-filter button {
    flex: 1;
    text-align: center;
  }
  .content-page .grid {
    grid-template-columns: 1fr;
  }
}
.content-page .demo-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FEEBEC;
  color: #B71722;
  border: 1px solid rgba(225, 29, 42, 0.22);
  border-radius: 7px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 26px;
}
.content-page .demo-flag svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}
.content-page .cart-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  margin: 0 0 48px;
}
.content-page .cart-main {
  min-width: 0;
}
.content-page .cart-table-wrap {
  overflow-x: auto;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  background: #FFFFFF;
}
.content-page .cart-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.content-page .cart-table th,
.content-page .cart-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
}
.content-page .cart-table thead th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6B7683;
  border-bottom: 1px solid #E3E7EC;
}
.content-page .cart-table tbody tr {
  border-bottom: 1px solid #E3E7EC;
}
.content-page .cart-table tbody tr:last-child {
  border-bottom: 0;
}
.content-page .cart-table .c-price,
.content-page .cart-table .c-sum {
  font-weight: 700;
  color: #1A2028;
  white-space: nowrap;
}
.content-page .cart-table .c-remove {
  text-align: right;
}
.content-page .c-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.content-page .c-thumb {
  width: 60px;
  height: 60px;
  border-radius: 7px;
  border: 1px solid #E3E7EC;
  object-fit: cover;
  background: #FAFBFC;
  flex-shrink: 0;
}
.content-page .c-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.content-page .c-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A2028;
}
.content-page .c-art {
  font-size: 12.5px;
  color: #94A0AC;
}
.content-page .cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  height: 40px;
}
.content-page .cart-qty button {
  width: 36px;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
  color: #6B7683;
}
.content-page .cart-qty button:hover {
  color: #1F2733;
}
.content-page .cart-qty span {
  width: 30px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.content-page .c-remove button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #E3E7EC;
  background: #FFFFFF;
  color: #6B7683;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.content-page .c-remove button:hover {
  background: #FEEBEC;
  color: #E11D2A;
  border-color: #FEEBEC;
}
.content-page .cart-summary {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 20px;
  min-width: 0;
}
.content-page .cart-summary h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1F2733;
  margin: 0 0 14px;
}
.content-page .sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6B7683;
  padding: 7px 0;
}
.content-page .sum-row.total {
  border-top: 1px solid #E3E7EC;
  margin-top: 6px;
  padding-top: 14px;
  font-size: 17px;
  font-weight: 800;
  color: #1A2028;
}
.content-page .promo-field {
  margin: 16px 0;
}
.content-page .promo-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6B7683;
  margin-bottom: 6px;
}
.content-page .promo-row {
  display: flex;
  gap: 8px;
}
.content-page .promo-row input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #FFFFFF;
}
.content-page .promo-row input:focus {
  border-color: #2C3745;
}
.content-page .promo-row .btn-promo {
  flex-shrink: 0;
  height: 44px;
  padding: 0 16px;
  border: 1.5px solid #1F2733;
  background: transparent;
  color: #1F2733;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.content-page .promo-row .btn-promo:hover {
  background: #1F2733;
  color: #FFFFFF;
}
.content-page .checkout {
  width: 100%;
  height: 50px;
  margin-top: 6px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .checkout:hover {
  background: #B71722;
}
.content-page .cart-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #94A0AC;
  line-height: 1.5;
}
.content-page .cart-empty {
  text-align: center;
  padding: 64px 20px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  margin: 0 0 48px;
}
.content-page .cart-empty svg {
  width: 52px;
  height: 52px;
  color: #94A0AC;
  margin-bottom: 18px;
}
.content-page .cart-empty p {
  font-size: 17px;
  font-weight: 700;
  color: #1F2733;
  margin: 0 0 18px;
}
.content-page .cart-empty .btn-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .cart-empty .btn-go:hover {
  background: #B71722;
}
@media (max-width: 1080px) {
  .content-page .cart-content {
    grid-template-columns: 1fr;
  }
  .content-page .cart-summary {
    position: static;
  }
}
@media (max-width: 720px) {
  .content-page .cart-table-wrap {
    border: 0;
    background: transparent;
    overflow-x: visible;
  }
  .content-page .cart-table {
    min-width: 0;
  }
  .content-page .cart-table thead {
    display: none;
  }
  .content-page .cart-table tbody,
  .content-page .cart-table tr,
  .content-page .cart-table td {
    display: block;
    width: 100%;
  }
  .content-page .cart-table tr {
    background: #FFFFFF;
    border: 1px solid #E3E7EC;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 14px;
  }
  .content-page .cart-table td {
    padding: 6px 0;
    border: 0;
  }
  .content-page .cart-table .c-item {
    padding-bottom: 10px;
  }
  .content-page .cart-table .c-price,
  .content-page .cart-table .c-qty,
  .content-page .cart-table .c-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .content-page .cart-table .c-price::before,
  .content-page .cart-table .c-qty::before,
  .content-page .cart-table .c-sum::before {
    content: attr(data-label);
    color: #6B7683;
    font-size: 12.5px;
    font-weight: 600;
  }
  .content-page .cart-table .c-remove {
    text-align: right;
    padding-top: 8px;
  }
}
.content-page .acc-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  margin: 0 0 48px;
}
.content-page .acc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 10px;
  position: sticky;
  top: 20px;
  align-self: start;
}
.content-page .acc-nav button,
.content-page .acc-nav a {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 7px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: #6B7683;
  cursor: pointer;
  text-decoration: none;
}
.content-page .acc-nav button:hover,
.content-page .acc-nav a:hover {
  background: #FAFBFC;
  color: #1F2733;
}
.content-page .acc-nav button.active,
.content-page .acc-nav a.active {
  background: #FEEBEC;
  color: #E11D2A;
}
.content-page .acc-nav .acc-logout {
  color: #94A0AC;
  border-top: 1px solid #E3E7EC;
  border-radius: 0;
  margin-top: 6px;
  padding-top: 16px;
}
.content-page .acc-nav .acc-logout:hover {
  background: transparent;
  color: #E11D2A;
}
.content-page .acc-panel-wrap {
  background: #FFFFFF;
  border: 1px solid #E3E7EC;
  border-radius: 12px;
  padding: 28px;
  min-width: 0;
}
.content-page .acc-panel[hidden] {
  display: none;
}
.content-page .acc-panel h2 {
  font-size: 19px;
  font-weight: 800;
  color: #1F2733;
  margin: 0 0 20px;
}
.content-page .acc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}
.content-page .acc-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6B7683;
  margin-bottom: 6px;
}
.content-page .acc-form input {
  width: 100%;
  height: 46px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  background: #FFFFFF;
}
.content-page .acc-form input:focus {
  border-color: #2C3745;
}
.content-page .acc-save {
  align-self: flex-start;
  height: 46px;
  padding: 0 28px;
  margin-top: 4px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.content-page .acc-save:hover {
  background: #B71722;
}
.content-page .acc-orders {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-page .order-row {
  display: grid;
  grid-template-columns: 100px 110px 130px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #E3E7EC;
  border-radius: 7px;
}
.content-page .order-row .o-num {
  font-weight: 700;
  color: #1F2733;
  font-size: 14px;
}
.content-page .order-row .o-date {
  font-size: 13px;
  color: #6B7683;
}
.content-page .order-row .o-sum {
  font-weight: 700;
  color: #1A2028;
  text-align: right;
}
.content-page .order-row .o-repeat {
  font-size: 13px;
  font-weight: 600;
  color: #1F2733;
  text-align: right;
  white-space: nowrap;
}
.content-page .order-row .o-repeat:hover {
  color: #E11D2A;
}
.content-page .status {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.content-page .status.pending {
  background: rgba(255, 184, 0, 0.16);
  color: #8A5A00;
}
.content-page .status.done {
  background: rgba(47, 168, 79, 0.14);
  color: #2FA84F;
}
.content-page .status.cancelled {
  background: #FAFBFC;
  color: #6B7683;
}
.content-page .acc-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.content-page .addr-card {
  border: 1px solid #E3E7EC;
  border-radius: 7px;
  padding: 18px;
}
.content-page .addr-card .addr-title {
  font-weight: 700;
  color: #1F2733;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.content-page .addr-card p {
  font-size: 13.5px;
  color: #6B7683;
  line-height: 1.5;
  margin: 0 0 12px;
}
.content-page .addr-actions {
  display: flex;
  gap: 16px;
}
.content-page .addr-actions a {
  font-size: 13px;
  font-weight: 600;
  color: #1F2733;
}
.content-page .addr-actions a:hover {
  color: #E11D2A;
}
@media (max-width: 720px) {
  .content-page .acc-layout {
    grid-template-columns: 1fr;
  }
  .content-page .acc-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content-page .acc-nav .acc-logout {
    border-top: 0;
    margin-top: 0;
    padding-top: 12px;
  }
  .content-page .order-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
  }
  .content-page .o-sum,
  .content-page .o-repeat {
    text-align: left;
    justify-self: start;
  }
  .content-page .acc-addresses {
    grid-template-columns: 1fr;
  }
}
.modal-backdrop {
  background-color: #1F2733;
}
.modal-backdrop.show {
  opacity: 0.55;
}
.auth-modal .modal-dialog {
  max-width: 420px;
}
.auth-modal .modal-content {
  border: 0;
  border-radius: 12px;
  padding: 36px 32px 28px;
  box-shadow: 0 6px 20px rgba(26, 32, 40, 0.08);
}
.auth-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  background: #FAFBFC;
  color: #6B7683;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal .modal-close:hover {
  background: #FEEBEC;
  color: #E11D2A;
}
.auth-modal .auth-title {
  position: relative;
  margin: 0 0 24px;
  padding: 0 44px 16px 0;
  font-size: 20px;
  font-weight: 800;
  color: #1F2733;
  border-bottom: 1.5px solid #E3E7EC;
}
.auth-modal .auth-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 46px;
  height: 2px;
  background: #E11D2A;
}
.auth-modal .auth-title[hidden] {
  display: none;
}
.auth-modal .auth-pane {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-modal .auth-pane[hidden] {
  display: none;
}
.auth-modal .auth-pane label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6B7683;
  margin-bottom: 6px;
}
.auth-modal .auth-pane input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #E3E7EC;
  border-radius: 7px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
}
.auth-modal .auth-pane input:focus {
  border-color: #2C3745;
}
.auth-modal .auth-submit {
  width: 100%;
  height: 50px;
  background: #E11D2A;
  color: #FFFFFF;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(225, 29, 42, 0.22);
}
.auth-modal .auth-submit:hover {
  background: #B71722;
}
.auth-modal .auth-alt {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94A0AC;
  font-size: 12.5px;
}
.auth-modal .auth-alt::before,
.auth-modal .auth-alt::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E3E7EC;
}
.auth-modal .auth-alt span {
  padding: 0 12px;
}
.auth-modal .auth-switch {
  display: block;
  text-align: center;
  color: #1F2733;
  font-weight: 600;
  font-size: 14px;
}
.auth-modal .auth-switch:hover {
  color: #E11D2A;
}
.auth-modal .auth-note {
  margin: 4px 0 0;
  color: #94A0AC;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}
.auth-modal input.is-invalid,
.auth-modal input.is-invalid:focus {
  border-color: #E11D2A;
}
.auth-modal .auth-err {
  margin: -10px 0 0;
  color: #E11D2A;
  font-size: 12.5px;
  font-weight: 600;
}
.auth-modal .auth-foot {
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid #E3E7EC;
  text-align: center;
  font-size: 14px;
  color: #6B7683;
}
.auth-modal .auth-foot a {
  font-weight: 700;
  color: #1F2733;
}
.auth-modal .auth-foot a:hover {
  color: #E11D2A;
}
.auth-modal .auth-done {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 8px 0 4px;
}
.auth-modal .auth-done.show {
  display: flex;
}
.auth-modal .auth-done .auth-done-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(47, 168, 79, 0.14);
  color: #2FA84F;
  font-size: 26px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.auth-modal .auth-done .auth-done-title {
  font-size: 17px;
  font-weight: 800;
  color: #1A2028;
  margin: 0;
}
.auth-modal .auth-done .auth-done-text {
  font-size: 13.5px;
  color: #6B7683;
  margin: 0;
  line-height: 1.55;
}
