* {
  border: 0;
  margin: 0;
  padding: 0;
}

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

:focus,
:active,
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

.header {
  z-index: 101;
  background: #1d1a1b;
  width: 100%;
  padding-bottom: 10px;
  position: fixed;
}

.header__row {
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 16px;
}

.header__row a {
  letter-spacing: .01em;
  color: #f8f7f7;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.header__row .container {
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .header__row {
    padding: 8px 0;
  }
}

.header__row-adress {
  letter-spacing: .01em;
  color: #f8f7f7;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.header__row-btn {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  background: #8c0022;
  margin-left: auto;
  margin-right: 20px;
  padding: 6px 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .header__row-btn {
    display: none;
  }

  .header__row-phone {
    margin-left: auto;
  }

  .header__row-mail {
    display: none !important;
  }
}

.header__top {
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  display: flex;
}

@media (width <=1000px) {
  .header__top {
    gap: 12px;
  }

  .header__logo img {
    width: 100px;
  }
}

.header__top-links {
  align-items: center;
  gap: 10px;
  margin-left: auto;
  display: flex;
}

@media (width <=1000px) {

  .header__top-links a:first-child,
  .header__top-links a:nth-child(2) {
    display: none;
  }
}

.header__nav ul {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.header__nav li a:not(.header__drop-wrapper a) {
  letter-spacing: .02em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=800px) {
  .header__nav {
    display: none;
  }
}

.header__drop-wrapper {
  position: relative;
}

.js__dropdown-btn {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  background: #8c0022;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.js__dropdown-btn svg {
  transition: all .3s;
}

.js__dropdown-btn--active svg {
  transform: rotate(180deg);
}

.js__dropdown-list {
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  max-width: 1510px;
  transition: all .3s;
  position: absolute;
}

.js__dropdown-list--active {
  opacity: 1;
  visibility: visible;
}

.header__drop-item {
  max-width: 250px;
}

.header__drop-item .btn {
  max-width: 250px;
  margin-bottom: 1px;
  position: relative;
  bottom: 2px;
}

.header__drop-link {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  border-bottom: 1px solid #0000;
  border-right: 1px solid #f8f7f729;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 249px;
  padding: 17px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  transition: all .3s;
  display: flex;
}

.header__drop-link:hover {
  border-bottom: 1px solid #8c0022;
}

.header__drop-cards {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  width: calc(100% - 250px);
  transition: all .3s;
  position: absolute;
  top: 0;
  left: 250px;
  box-shadow: 0 12px 28px #0000003d, 0 8px 12px #00000029;
}

.header__drop-cards .btn {
  max-width: max-content;
  margin-left: auto;
  margin-right: 40px;
  display: flex;
}

.header__drop-cards--active {
  opacity: 1;
  visibility: visible;
}

.header__drop-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  width: 100%;
  padding: 20px 40px 12px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .header__drop-title {
    padding: 20px 20px 8px;
    font-size: 24px;
  }
}

.header__cards-content {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  margin-bottom: 20px;
  padding: 0 40px;
  display: grid;
}

@media (width <=1300px) {
  .header__cards-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <=1000px) {
  .header__cards-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.header__cards-descr {
  padding: 8px 16px 8px 0;
}

.header__cards-item {
  background: #1b1819;
  align-items: center;
  gap: 12px;
  display: flex;
}

@media (width <=1300px) {
  .header__cards-item {
    display: none;
  }

  .header__cards-item:first-child,
  .header__cards-item:nth-child(2),
  .header__cards-item:nth-child(3),
  .header__cards-item:nth-child(4),
  .header__cards-item:nth-child(5),
  .header__cards-item:nth-child(6) {
    display: flex;
  }
}

@media (width <=1000px) {

  .header__cards-item:nth-child(5),
  .header__cards-item:nth-child(6) {
    display: none;
  }
}

.header__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-bottom: 4px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

.header__item-art {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

.header__item-price {
  letter-spacing: .01em;
  color: #f8f7f7;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.header__drop-row {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #313b48;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.js-burger__btn-open {
  display: none;
}

@media (width <=800px) {
  .js-burger__btn-open {
    display: block;
  }
}

.footer {
  padding-top: 100px;
}

@media (width <=1000px) {
  .footer {
    padding-top: 50px;
  }
}

.footer__content {
  border-bottom: 1px solid #f8f7f729;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 60px;
  display: grid;
}

@media (width <=1000px) {
  .footer__content {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}

.footer__logo {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer__logo p {
  letter-spacing: .02em;
  color: #f8f7f799;
  margin-top: auto;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

.footer__logo p span {
  letter-spacing: .01em;
  text-decoration-skip-ink: none;
  color: #f8f7f7;
  font-weight: 700;
  text-decoration: underline;
}

.footer__logo-descr {
  max-width: 260px;
}

.footer__logo-descr img {
  width: 260px;
}

.footer__logo-descr p {
  letter-spacing: .02em;
  color: #f8f7f766;
  margin-top: 12px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

.footer__nav ul {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer__nav a {
  letter-spacing: .02em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .footer__nav a {
    font-size: 14px;
  }
}

.footer__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .footer__item-title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }
}

.footer__contacts {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer__socials {
  letter-spacing: .02em;
  color: #f8f7f7;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.footer__socials svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .footer__socials {
    font-size: 14px;
  }
}

.footer__socials-row {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 20px;
  display: flex;
}

@media (width <=1000px) {
  .footer__socials-row {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
}

.footer__socials-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  max-width: 150px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .footer__socials-title {
    text-align: center;
    max-width: none;
  }
}

.footer__socials-links {
  align-items: center;
  gap: 10px;
  display: flex;
}

@media (width <=1000px) {
  .footer__socials-links a {
    background: #181113;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    display: flex;
  }

  .footer__socials-links {
    width: 100%;
  }
}

.footer__row {
  padding: 16px 0;
}

.footer__rights {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

.burger {
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  background: #1b18195e;
  width: 100%;
  height: 100%;
  transition: all .3s;
  position: fixed;
}

.burger--active {
  opacity: 1;
  visibility: visible;
}

.burger__content {
  background: #1d1a1b;
  max-width: 90%;
  height: 100%;
  padding: 13px 20px 17px;
  overflow-y: auto;
}

.burger__head {
  border-bottom: 1px solid #f8f7f729;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  display: flex;
}

.burger__logo img {
  width: 100px;
}

.burger__nav {
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 16px;
  padding-bottom: 12px;
}

.burger__nav ul {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.burger__nav .btn {
  gap: 16px;
  width: 100%;
  max-width: none;
}

.burger__nav a:not(.btn) {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #181113;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.burger__nav a:not(.btn) div {
  align-items: center;
  gap: 10px;
  display: flex;
}

.burger__contacts {
  border-bottom: 1px solid #f8f7f729;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  display: flex;
}

.burger__contacts a {
  letter-spacing: .02em;
  color: #f8f7f7;
  gap: 8px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.burger__contacts .btn {
  max-width: none;
}

.burger__socials {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  padding: 12px;
}

.burger__socials-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 125%;
}

.burger__socials-row {
  align-items: center;
  gap: 8px;
  display: flex;
}

.burger__socials-row a {
  background: #181113;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
}

.burger__socials-row svg {
  width: 100%;
}

.overlay {
  z-index: 102;
  background-color: #0000004d;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
  position: fixed;
}

.overlay--hidden {
  opacity: 0;
  visibility: hidden;
}

.overlay__content {
  width: 100%;
  max-width: 500px;
  max-height: max-content;
  position: relative;
}

.js-overlay__btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.main-section {
  padding-bottom: 100px;
}

@media (width <=1000px) {
  .main-section {
    padding-bottom: 50px;
  }
}

.main-section__content-wrapper {
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .main-section__content-wrapper {
    flex-direction: column;
    gap: 5px;
  }
}

.main-section__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  display: grid;
}

@media (width <=1000px) {
  .main-section__content {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.main-section__content-red {
  background: linear-gradient(90deg, #8c0022 0%, #75001c 100%);
  grid-column: 1 / -1;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.main-section__content-red img {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (width <=1000px) {
  .main-section__content-red img {
    width: 100%;
    margin-right: auto;
    position: relative;
    right: 80px;
  }
}

.main-section__content-red h1,
.main-section__content-red h2 {
  letter-spacing: .01em;
  color: #f8f7f7;
  z-index: 2;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
  position: relative;
}

@media (width <=1000px) {

  .main-section__content-red h1,
  .main-section__content-red h2 {
    text-align: center;
    font-size: 24px;
  }
}

.main-section__content-red p {
  letter-spacing: .02em;
  color: #f8f7f799;
  z-index: 2;
  max-width: 670px;
  margin-bottom: 80px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  position: relative;
}

@media (width <=1000px) {
  .main-section__content-red p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.main-section__content-red .btn {
  z-index: 2;
  position: relative;
}

@media (width <=1000px) {
  .main-section__content-red .btn {
    width: 100%;
    max-width: none;
  }

  .main-section__content-red {
    padding: 15px 10px 0;
  }
}

.main-section__content-gray {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.main-section__content-gray img {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
}

@media (width <=1400px) {
  .main-section__content-gray img {
    width: 240px;
  }
}

@media (width <=1000px) {
  .main-section__content-gray img {
    width: 140px;
  }
}

.main-section__content-gray p {
  letter-spacing: .02em;
  color: #f8f7f766;
  z-index: 2;
  max-width: 350px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  position: relative;

  min-height: 80px;
}

@media (width <=1000px) {
  .main-section__content-gray p {
    font-size: 14px;
    min-height: 53px;
  }
}

.main-section__content-gray a {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  z-index: 2;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  position: relative;
}

.main-section__content-gray a div {
  z-index: 2;
  max-width: max-content;
  position: relative;
}

.main-section__content-gray a svg {
  z-index: 1;
  position: absolute;
  bottom: -12px;
  left: -16px;
}

@media (width <=1000px) {
  .main-section__content-gray a svg {
    bottom: -14px;
  }

  .main-section__content-gray a {
    margin-left: 16px;
    font-size: 14px;
    display: block;
  }

  .main-section__content-gray {
    padding: 15px 10px;
  }
}

.main-section__gray-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  z-index: 2;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
  position: relative;
}

@media (width <=1000px) {
  .main-section__gray-title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }
}

.main-section__gray-price {
  letter-spacing: .01em;
  color: #f8f7f7;
  z-index: 2;
  margin-top: 120px;
  margin-bottom: 24px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
  position: relative;
}

@media (width <=1000px) {
  .main-section__gray-price {
    margin-top: 30px;
    font-size: 18px;
  }
}

.main-section__links {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 250px;
  display: flex;
}

.main-section__links a {
  letter-spacing: .01em;
  color: #f8f7f7;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 250px;
  padding: 16px 20px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

@media (width <=700px) {
  .main-section__links a {
    max-width: none;
    padding: 10px;
    font-size: 14px;
  }

  .main-section__links {
    max-width: none;
  }
}

.cards-swiper__swiper-slide {
  height: auto;
}

.product-card {
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
}

.product-card img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

@media (width <=1000px) {
  .product-card img {
    height: 240px;
  }
}

.product-card__btn-srav {
  z-index: 10;
  position: absolute;
  top: 15px;
  right: 44px;
}

.product-card__btn-wish {
  z-index: 10;
  position: absolute;
  top: 15px;
  right: 12px;
}

.product-card__swiper-pagination {
  z-index: 10;
  width: calc(100% - 20px);
  display: flex;
  position: absolute;
  bottom: 5px !important;
}

.product-card__swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #f8f7f766;
  border-radius: 0;
  width: 100%;
  height: 2px;
}

.product-card__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.product-descr {
  background: #1b1819;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  display: flex;
}

@media (width <=1000px) {
  .product-descr {
    padding: 10px;
  }
}

.product-card__title {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .product-card__title {
    font-size: 16px;
  }
}

.product-card__prices {
  align-items: end;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}

.product-card__price-new,
.single-main__price-new {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {

  .product-card__price-new,
  .single-main__price-new {
    font-size: 18px;
  }
}

.product-card__price-old,
.single-main__price-old {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
  text-decoration: line-through;
}

@media (width <=1000px) {

  .product-card__price-old,
  .single-main__price-old {
    font-size: 13px;
  }
}

.product-card__atributes {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.product-card__atributes-item {
  border-bottom: 1px solid #f8f7f729;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  display: flex;
}

.product-card__atributes-title {
  letter-spacing: .01em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 125%;
}

.product-card__atributes-text {
  letter-spacing: .02em;
  text-align: right;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.product-card__btns {
  gap: 24px;
  margin-top: auto;
  display: flex;
}

.cart-btn {
  align-items: center;
  gap: 8px;
  width: 50%;
  display: flex;
  max-width: 195px !important;
}

.one-click {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  position: relative;
}

.one-click div {
  z-index: 2;
  max-width: max-content;
  position: relative;
}

.one-click svg {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: -16px;
}

@media (width <=1000px) {
  .one-click {
    font-size: 13px;
  }
}

.cards-swiper__row {
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.swiper-pagination-progressbar-fill {
  background: #8c0022 !important;
}

.cards-swiper__swiper-pagination {
  background: #f8f7f729;
  height: 4px;
  position: relative;
}

.cards-swiper__btns {
  align-items: center;
  gap: 10px;
  display: flex;
}

.cards-swiper__swiper-wrapper-prev {
  width: 36px;
  height: 36px;
  margin: 0;
  position: static;
}

.cards-swiper__swiper-wrapper-prev:after {
  display: none;
}

.cards-swiper__swiper-wrapper-next {
  width: 36px;
  height: 36px;
  margin: 0;
  position: static;
}

.cards-swiper__swiper-wrapper-next:after {
  display: none;
}

.category-card {
  display: block;
  position: relative;
}

.category-card img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

@media (width <=1000px) {
  .category-card img {
    height: 350px;
  }
}

.cards-swiper__swiper2 .category-card img {
  width: 100%;
  height: auto;
  min-height: 240px;
}

.category-card__info {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #313b48;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: calc(100% - 40px);
  padding: 12px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (width <=1000px) {
  .category-card__info {
    width: calc(100% - 20px);
    font-size: 16px;
    bottom: 10px;
    left: 10px;
  }
}

.blog-card img {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.blog-card__descr {
  background: #1b1819;
  padding: 20px;
}

@media (width <=1000px) {
  .blog-card__descr {
    padding: 12px;
  }
}

.blog-card__title {
  letter-spacing: .01em;
  color: #f8f7f7;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  display: -webkit-box;
  overflow: hidden;
}

@media (width <=1000px) {
  .blog-card__title {
    font-size: 16px;
  }
}

.blog-card__text {
  letter-spacing: .02em;
  color: #f8f7f799;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: -webkit-box;
  overflow: hidden;
}

@media (width <=1000px) {
  .blog-card__text {
    font-size: 14px;
  }
}

.blog-card__row {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.blog-card__date {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.info__content {
  position: relative;
}

@media (width <=1000px) {
  .info__content img {
    width: 100%;
    position: absolute;
    left: -50%;
  }
}

@media (width <=700px) {
  .info__content img {
    width: 570px;
    position: relative;
  }

  .info__content {
    flex-direction: column-reverse;
    display: flex;
  }
}

@media (width <=1000px) {
  .info__content-items {
    flex-direction: column;
    gap: 10px;
    max-width: 50%;
    margin-bottom: 100px;
    margin-left: auto;
    display: flex;
  }
}

@media (width <=700px) {
  .info__content-items {
    max-width: none;
    margin: 0;
  }
}

.info__content-item {
  z-index: 10;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 540px;
  display: flex;
  position: absolute;
}

.info__content-item:first-child {
  top: 100px;
  left: 0;
}

.info__content-item:nth-child(2) {
  top: 180px;
  max-width: 440px;
  right: 0;
}

.info__content-item:nth-child(2) .info__item-title,
.info__content-item:nth-child(2) .info__item-text {
  text-align: right;
}

.info__content-item:nth-child(3) {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.info__content-item:nth-child(3) .info__item-title,
.info__content-item:nth-child(3) .info__item-text {
  text-align: center;
}

@media (width <=1000px) {
  .info__content-item {
    position: static;
    transform: translateX(0) !important;
  }
}

.info__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .info__item-title {
    font-size: 16px;
    text-align: left !important;
  }
}

.info__item-text {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .info__item-text {
    font-size: 14px;
    text-align: left !important;
  }
}

.info__cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=700px) {
  .info__cards {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: -60px;
  }
}

.info__cards-item {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px;
  display: flex;
}

@media (width <=700px) {
  .info__cards-item {
    padding: 12px;
  }
}

.info__cards-title {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .info__cards-title {
    font-size: 20px;
  }
}

.info__cards-text {
  letter-spacing: .02em;
  text-align: center;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=700px) {
  .info__cards-text {
    font-size: 14px;
  }
}

.faq .container {
  gap: 60px;
  display: flex;
}

@media (width <=1000px) {
  .faq .container {
    flex-direction: column;
    gap: 20px;
  }
}

.faq-acc__content {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.acc-item {
  background: #1b1819;
  padding: 0 20px;
  overflow: hidden;
}

.acc-item--active .acc-head {
  border-bottom: 1px solid #f8f7f729;
}

.acc-head svg {
  transform: rotate(180deg);
}

.acc-item--active .acc-head svg {
  transform: rotate(0deg);
}

.acc-item--active .acc-body {
  max-height: 700px;
  padding: 20px 0;
}

@media (width <=1000px) {
  .acc-item--active .acc-body {
    padding: 12px 0;
  }

  .acc-item {
    padding: 0 12px;
  }
}

.acc-head {
  letter-spacing: .01em;
  color: #f8f7f7;
  cursor: pointer;
  border-bottom: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
  transition: all .3s;
  display: flex;
}

.acc-head svg {
  transition: all .3s;
}

@media (width <=1000px) {
  .acc-head {
    padding: 12px 0;
    font-size: 16px;
  }
}

.acc-body {
  letter-spacing: .02em;
  color: #f8f7f799;
  max-height: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  transition: all .3s;
}

@media (width <=1000px) {
  .acc-body {
    font-size: 14px;
  }
}

.faq__form {
  background: #1b1819;
  width: 100%;
  max-width: 500px;
  max-height: max-content;
  padding: 20px;
}

.faq__form form {
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  display: flex;
}

.faq__form form br {
  display: none;
}

.wpcf7-response-output {
  color: #fff !important;
}

.faq__form input:not(.custom-checkbox input) {
  letter-spacing: .02em;
  color: #fff;
  background: #181113;
  width: 100%;
  padding: 12px 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

.faq__form input:not(.custom-checkbox input)::placeholder {
  color: #f8f7f766;
}

.faq__form textarea {
  letter-spacing: .02em;
  color: #fff;
  resize: none;
  background: #181113;
  width: 100%;
  padding: 12px 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  max-height: 100px;
}

.faq__form textarea::placeholder {
  color: #f8f7f766;
}

.faq__form .btn {
  max-width: none;
}

@media (width <=1000px) {
  .faq__form {
    max-width: none;
    padding: 10px;
  }
}

.faq__form-title {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  margin-bottom: 8px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .faq__form-title {
    font-size: 20px;
  }
}

.faq__form-text {
  letter-spacing: .02em;
  text-align: center;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .faq__form-text {
    font-size: 14px;
  }
}

.custom-checkbox {
  letter-spacing: .02em;
  color: #f8f7f799;
  cursor: pointer;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.custom-checkbox input {
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  background: #f8f7f729;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
}

.custom-checkbox input:checked {
  background: #8c0022;
}

.custom-checkbox input:checked:after {
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='9' fill='none'><path stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.495' d='M1 4.5 3.667 8 9 1'/></svg>") center / contain no-repeat;
  width: 10px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rights_download {
  letter-spacing: .01em;
  text-decoration-skip-ink: none;
  color: #f8f7f7;
  font-weight: 700;
  text-decoration: underline;
}

.catalog-cats__row {
  margin-top: 16px;
  padding-bottom: 20px;
}

.catalog-cats__row .container {
  gap: 16px;
  display: flex;
}

@media (width <=1000px) {
  .catalog-cats__row .container {
    flex-direction: column;
  }
}

.catalog-cats__row-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.catalog-cats__row-content {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.catalog-cats__row-content a {
  letter-spacing: .02em;
  color: #f8f7f7;
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  padding: 12px 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.price-slider__fields {
  gap: 8px;
  margin-bottom: 20px;
  display: flex;
}

.price-slider__field {
  cursor: text;
  background: #f8f7f70a;
  border: 1px solid #f8f7f714;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  padding: 10px 14px;
  display: flex;
}

.price-slider__label {
  text-transform: uppercase;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.price-slider__value {
  color: #f8f7f7;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.price-slider__value::placeholder {
  color: #f8f7f74d;
}

.price-slider__range {
  align-items: center;
  height: 18px;
  display: flex;
  position: relative;
}

.price-slider__track {
  background: #f8f7f726;
  border-radius: 2px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
}

.price-slider__track-fill {
  background: #9e1b32;
  border-radius: 2px;
  height: 2px;
  position: absolute;
}

.price-slider__input {
  appearance: none;
  pointer-events: none;
  background: none;
  width: 100%;
  height: 18px;
  margin: 0;
  position: absolute;
  left: 0;
}

.price-slider__input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: none;
}

.price-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  cursor: pointer;
  background: #9e1b32;
  border: 3px solid #1c1815;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.price-slider__input::-moz-range-track {
  background: none;
}

.price-slider__input::-moz-range-thumb {
  pointer-events: auto;
  cursor: pointer;
  background: #9e1b32;
  border: 3px solid #1c1815;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.price-slider__input--max::-webkit-slider-thumb {
  background: #f8f7f7;
}

.price-slider__input--max::-moz-range-thumb {
  background: #f8f7f7;
}

.catalog-sort {
  align-items: center;
  gap: 8px;
  display: flex;
}

.catalog-sort__label {
  color: #f8f7f780;
  white-space: nowrap;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.sort-dropdown {
  position: relative;
}

.sort-dropdown__toggle {
  color: #f8f7f7;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.sort-dropdown__arrow {
  color: #f8f7f7;
  flex-shrink: 0;
  transition: transform .2s;
}

.sort-dropdown.is-open .sort-dropdown__arrow {
  transform: rotate(180deg);
}

.sort-dropdown__list {
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  background: #262220;
  border: 1px solid #f8f7f714;
  border-radius: 10px;
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;
  transition: opacity .18s, transform .18s, visibility .18s;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px #0006;
}

.sort-dropdown.is-open .sort-dropdown__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-dropdown__item {
  color: #f8f7f7b3;
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  transition: background .15s, color .15s;
}

.sort-dropdown__item:hover {
  color: #f8f7f7;
  background: #f8f7f70f;
}

.sort-dropdown__item--active {
  color: #f8f7f7;
  background: #9e1b322e;
  font-weight: 600;
}

.sort-dropdown__item--active:hover {
  background: #9e1b323d;
}

.catalog-page {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  padding-top: 40px;
  padding-bottom: 50px;
}

.catalog-page__content-wrapper {
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 40px;
  display: grid;
}

@media (width <=1200px) {
  .catalog-page__content-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.catalog-page__aside {
  background: #1d1a1b;
  flex-direction: column;
  gap: 20px;
  max-height: max-content;
  padding: 20px;
  display: flex;
}

.catalog-page__aside .acc-item {
  background: none;
  padding: 0;
}

.catalog-page__aside .acc-item--active .acc-body {
  border-color: #f8f7f729;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  max-height: 350px;
}

.catalog-page__aside .acc-head {
  border: none;
  padding: 0;
  font-size: 20px;
}

.catalog-page__aside .acc-body {
  flex-direction: column;
  gap: 10px;
  display: flex;
  overflow-y: auto;
}

.catalog-page__aside .custom-checkbox {
  color: #fff;
}

@media (width <=1200px) {
  .catalog-page__aside {
    display: none;
  }
}

.catalog-page__aside-btns {
  align-items: center;
  gap: 10px;
  display: flex;
}

.catalog-page__aside-btns .btn {
  width: 100%;
  max-width: none;
}

.catalog-page__content-banner .main-section__content-red {
  padding: 20px;
}

@media (width <=1000px) {
  .catalog-page__content-banner .main-section__content-red {
    padding-bottom: 0;
  }
}

.catalog-page__content-banner .main-section__content-red p {
  margin-bottom: 0;
}

.catalog-page__content-banner img {
  width: 370px;
}

.catalog-page__content-banner h2 {
  max-width: 900px;
}

.catalog-page__content-row {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
  display: flex;
}

@media (width <=600px) {
  .catalog-page__content-row {
    flex-direction: column;
    align-items: start;
  }
}

.catalog-page__row-count {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.catalog-page__content-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

@media (width <=900px) {
  .catalog-page__content-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <=600px) {
  .catalog-page__content-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

::-webkit-scrollbar {
  border-radius: 20px;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #8c0022;
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background: #070707;
}

::-webkit-scrollbar-button {
  display: none;
}

.catalog-page__row-btns {
  align-items: center;
  gap: 10px;
  display: flex;
}

.catalog-page__row-btn {
  display: none !important;
}

@media (width <=1200px) {
  .catalog-page__row-btn {
    align-items: center;
    gap: 10px;
    display: flex !important;
  }
}

.last-banner {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  margin-top: 100px;
}

.last-banner .section-title {
  border: none;
  margin: 0;
  padding: 0;
}

@media (width <=1000px) {
  .last-banner {
    margin-top: 50px;
  }
}

.last-banner__content-wrapper {
  align-items: center;
  display: flex;
}

.last-banner__content-wrapper img {
  object-fit: cover;
  width: 100%;
  max-width: 660px;
}

@media (width <=1200px) {
  .last-banner__content-wrapper img {
    max-width: 400px;
  }
}

@media (width <=1000px) {
  .last-banner__content-wrapper img {
    order: 3;
    max-width: none;
  }
}

.last-banner__content-wrapper a {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  white-space: nowrap;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
  position: relative;
}

.last-banner__content-wrapper a div {
  z-index: 2;
  position: relative;
}

.last-banner__content-wrapper a svg {
  z-index: 1;
  position: absolute;
  top: -29px;
  left: -34px;
}

@media (width <=1000px) {
  .last-banner__content-wrapper a svg {
    width: 60px;
    height: 60px;
    top: -21px;
    left: -19px;
  }

  .last-banner__content-wrapper a {
    margin-left: 15px;
    font-size: 16px;
  }

  .last-banner__content-wrapper {
    flex-direction: column;
    align-items: start;
    padding-top: 40px;
  }
}

.last-banner__descr {
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  display: flex;
}

@media (width <=1000px) {
  .last-banner__descr {
    margin-bottom: 40px;
  }
}

.last-banner__text {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .last-banner__text {
    font-size: 16px;
  }
}

.empty {
  margin: 50px 0;
}

.empty .container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.empty__title {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .empty__title {
    font-size: 20px;
  }
}

.contacts-page {
  margin-bottom: 100px;
}

@media (width <=1000px) {
  .contacts-page {
    margin-bottom: 50px;
  }
}

.contacts-page__content-wrapper {
  gap: 20px;
  display: flex;
}

.contacts-page__content-wrapper .faq__form {
  max-width: 400px;
}

@media (width <=1000px) {
  .contacts-page__content-wrapper .faq__form {
    max-width: none;
  }
}

.contacts-page__content-wrapper iframe {
  width: 100%;
  height: 537px;
}

@media (width <=1000px) {
  .contacts-page__content-wrapper iframe {
    height: 300px;
  }

  .contacts-page__content-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.contacts-page__content {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  display: flex;
}

@media (width <=1000px) {
  .contacts-page__content {
    gap: 10px;
    max-width: none;
  }
}

.contacts-page__content-item {
  background: #1b1819;
  padding: 20px;
}

@media (width <=1000px) {
  .contacts-page__content-item {
    padding: 10px;
  }
}

.contacts-page__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .contacts-page__item-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }
}

.contacts-page__content-contacts {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.contacts-page__content-contacts a {
  letter-spacing: .02em;
  color: #f8f7f7;
  gap: 8px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.contacts-page__content-contacts a svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .contacts-page__content-contacts a {
    font-size: 14px;
  }
}

.contacts-page__content-socials {
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.contacts-page__content-time {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.contacts-page__time-item span {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .contacts-page__time-item span {
    font-size: 12px;
  }
}

.contacts-page__time-item div {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .contacts-page__time-item div {
    font-size: 14px;
  }
}

.contacts-page__content-ip {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.contacts-page__ip-item {
  letter-spacing: .02em;
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
}

.contacts-page__ip-item span {
  color: #f8f7f799;
}

.contacts-adresses__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=1000px) {
  .contacts-adresses__content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.contacts-adresses__col-items {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.contacts-adresses__col-item {
  background: #1b1819;
  padding: 20px;
}

@media (width <=1000px) {
  .contacts-adresses__col-item {
    padding: 10px;
  }
}

.contacts-adresses__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .contacts-adresses__item-title {
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-size: 20px;
  }
}

.contacts-adresses__item-descr {
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .contacts-adresses__item-descr {
    flex-direction: column;
    justify-content: start;
  }
}

.contacts-adresses__item-links {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.contacts-adresses__item-links a {
  letter-spacing: .02em;
  color: #f8f7f7;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.contacts-adresses__item-links a svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .contacts-adresses__item-links a {
    font-size: 14px;
  }
}

.cart-page__content-wrapper {
  gap: 20px;
  display: flex;
}

@media (width <=1100px) {
  .cart-page__content-wrapper {
    flex-direction: column;
  }
}

.cart-page__content {
  width: 100%;
  max-width: 1100px;
}

.cart-page__content-item {
  background: #1b1819;
  gap: 12px;
  height: 100%;
  display: flex;
}

.cart-page__content-item img {
  object-fit: cover;
  width: 100%;
  max-width: 240px;
}

@media (width <=1200px) {
  .cart-page__content-item img {
    max-width: 180px;
  }
}

@media (width <=700px) {
  .cart-page__content-item img {
    max-width: 125px;
    max-height: 106px;
  }
}

@media (width <=1100px) {
  .cart-page__content-item {
    flex-wrap: wrap;
    gap: 0;
    padding: 5px;
  }
}

.cart-page__descr-wrapper {
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
  padding: 12px 0;
  display: flex;
}

@media (width <=1000px) {
  .cart-page__descr-wrapper {
    max-width: 180px;
    margin-left: 5px;
    padding: 0;
  }
}

.cart-page__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .cart-page__item-title {
    font-size: 15px;
  }
}

.cart-page__item-articul {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .cart-page__item-articul {
    font-size: 11px;
  }
}

.cart-page__descr-atributes {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.cart-page__descr-atributes span {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-weight: 700;
}

@media (width <=700px) {
  .cart-page__descr-atributes {
    font-size: 12px;
  }
}

.cart-page__price-wrapper {
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
  margin-left: auto;
  padding: 12px 0;
  display: flex;
}

@media (width <=1000px) {
  .cart-page__price-wrapper {
    margin-left: 0;
  }
}

.cart-page__price {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .cart-page__price {
    font-size: 20px;
  }
}

.cart-page__counts-btns {
  align-items: center;
  display: flex;
}

.cart-page__counts-btns span {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #181113;
  border-top: 1px solid #8c0022;
  border-bottom: 1px solid #8c0022;
  justify-content: center;
  align-items: center;
  width: 81px;
  height: 44px;
  padding: 12px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.cart-page__count-minus,
.cart-page__count-plus {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  background: #8c0022;
  width: 49px;
  height: 44px;
  padding: 12px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

.cart-page__btns {
  border-left: 1px solid #f8f7f729;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: calc(100% - 24px);
  margin: 12px 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

@media (width <=1000px) {
  .cart-page__btns {
    margin-left: auto;
  }
}

.cart-page__total {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 420px;
  max-height: max-content;
  padding: 20px;
  display: flex;
}

.cart-page__total p {
  letter-spacing: .02em;
  text-align: center;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.cart-page__total .btn {
  width: 100%;
  max-width: none;
}

@media (width <=1100px) {
  .cart-page__total {
    max-width: none;
  }
}

.cart-page__total-row {
  align-items: end;
  gap: 10px;
  width: 100%;
  display: flex;
}

.cart-page__total-row span:not(.woocommerce-Price-amount) {
  background-color: #f8f7f729;
  width: 100%;
  height: 1px;
  display: block;
}

.woocommerce-Price-amount bdi {
  display: flex;
}

.cart-page__total-title {
  letter-spacing: .02em;
  text-align: center;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 125%;
}

.cart-page__total-price {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  white-space: nowrap;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.srav__content {
  padding-bottom: 10px;
  display: flex;
  overflow: auto hidden;
}

.srav__content::-webkit-scrollbar {
  height: 5px;
}

.srav__main-col {
  min-width: 200px;
}

.srav__main-col span {
  height: 100px;
  display: block;
}

@media (width <=1000px) {
  .srav__main-col span {
    height: 70px;
  }

  .srav__main-col {
    min-width: 100px;
  }
}

.srav__main-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
  border: 1px solid #f8f7f729;
  border-right: none;
  padding: 16px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

.srav__main-title:last-child {
  border-top: none;
}

@media (width <=1000px) {
  .srav__main-title {
    align-items: center;
    min-height: 55px;
    padding: 10px 5px;
    font-size: 13px;
    display: flex;
  }
}

.srav__item-col {
  background: #1b1819;
  min-width: 350px;
  position: relative;
}

@media (width <=1000px) {
  .srav__item-col {
    min-width: 240px;
  }
}

.srav__item-remove {
  position: absolute;
  top: 5px;
  right: 5px;
}

.srav__item-head {
  align-items: center;
  gap: 12px;
  padding-right: 10px;
  display: flex;
}

.srav__item-head img {
  object-fit: cover;
  width: 125px;
  height: 100px;
}

@media (width <=1000px) {
  .srav__item-head img {
    width: 98px;
    height: 70px;
  }

  .srav__item-head {
    gap: 5px;
  }
}

.srav__head-descr {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.srav__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .srav__item-title {
    font-size: 12px;
  }
}

.srav__item-price {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .srav__item-price {
    font-size: 14px;
  }
}

.srav__item-atribute {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #1b1819;
  border: 1px solid #f8f7f729;
  border-right: none;
  padding: 16px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

.srav__item-atribute:last-child {
  border-top: none;
}

@media (width <=1000px) {
  .srav__item-atribute {
    align-items: center;
    min-height: 55px;
    padding: 10px 5px;
    font-size: 13px;
    display: flex;
  }
}

.about-page {
  margin-bottom: 100px;
}

.about-page .container {
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .about-page .container {
    flex-direction: column;
  }

  .about-page {
    margin-bottom: 50px;
  }
}

.about-page__text {
  letter-spacing: .02em;
  color: #f8f7f7;
  width: 100%;
  max-width: 650px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .about-page__text {
    font-size: 14px;
  }
}

.about-page__descr {
  width: 100%;
  max-width: 650px;
  display: flex;
}

.about-page__descr img {
  object-fit: cover;
  border-radius: 100%;
  width: 100px;
  height: 100px;
}

@media (width <=1000px) {
  .about-page__descr img {
    display: none;
  }
}

.about-page__descr-texts p {
  letter-spacing: .01em;
  color: #f8f7f7;
  gap: 3px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.about-page__descr-texts p svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .about-page__descr-texts p {
    font-size: 16px;
  }
}

.about-page__info-wrapper img {
  object-fit: cover;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  display: none;
}

@media (width <=1000px) {
  .about-page__info-wrapper img {
    display: block;
  }

  .about-page__info-wrapper {
    align-items: center;
    gap: 5px;
    display: flex;
  }
}

.about-page__descr-info {
  padding-left: 31px;
}

@media (width <=1000px) {
  .about-page__descr-info {
    padding: 0;
  }
}

.about-page__info-name {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .about-page__info-name {
    font-size: 14px;
  }
}

.about-page__info-text {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 125%;
}

.about-page__info-text span {
  letter-spacing: .01em;
  color: #8c0022;
  font-weight: 700;
}

@media (width <=1000px) {
  .about-page__info-text {
    font-size: 12px;
  }
}

.about-img {
  background-repeat: no-repeat;
  background-size: cover;
  height: 88vh;
  min-height: 600px;
  padding: 80px 0;
}

.about-img .container {
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

.about-img p {
  letter-spacing: .02em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=700px) {
  .about-img p {
    font-size: 14px;
  }

  .about-img {
    background-position: -640px 0;
    padding: 40px 0;
  }
}

.about-img__row {
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  display: flex;
}

.about-img__row p {
  max-width: 400px;
}

@media (width <=1000px) {
  .about-img__row {
    flex-direction: column;
    align-items: start;
  }
}

.about-img__title {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 110px;
  font-weight: 600;
}

@media (width <=1000px) {
  .about-img__title {
    font-size: 35px;
  }
}

.about-cards__cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=1000px) {
  .about-cards__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.about-cards__cards-item {
  border-right: 1px solid #f8f7f729;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
  display: flex;
}

.about-cards__cards-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

@media (width <=1000px) {
  .about-cards__cards-item {
    border: none;
    border-bottom: 1px solid #f8f7f729;
    padding: 0 0 15px;
  }
}

.about-cards__cards-item:last-child {
  border: none;
  padding: 0;
}

.about-cards__item-title {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .about-cards__item-title {
    font-size: 14px;
  }
}

.about-cards__item-text {
  letter-spacing: .02em;
  text-align: center;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .about-cards__item-text {
    font-size: 14px;
  }
}

.about-cards__head {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

@media (width <=1000px) {
  .about-cards__head {
    flex-direction: column;
  }
}

.about-cards__head-title {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 600;
}

@media (width <=1000px) {
  .about-cards__head-title {
    font-size: 26px;
  }
}

.about-cards__head-texts {
  letter-spacing: .02em;
  color: #f8f7f7;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 780px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

@media (width <=1000px) {
  .about-cards__head-texts {
    font-size: 14px;
  }
}

.single-main .container {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  display: grid;
}

@media (width <=1000px) {
  .single-main .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}

.single-main__imgs {
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .single-main__imgs {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
  }
}

.single-main__swiper-child {
  width: 100%;
  max-height: 580px;
  max-width: 100px;
}

.single-main__swiper-child img {
  object-fit: cover;
  width: 100px;
  max-height: 88px;
}

@media (width <=1000px) {
  .single-main__swiper-child {
    width: 100%;
    max-width: none;
  }

  .single-main__swiper-child img {
    width: 100%;
  }

  .single-main__swiper-child {
    order: 2;
  }
}

.single-main__swiper-child-slide {
  width: 100px;
  max-height: 88px;
}

.single-main__swiper-main img {
  object-fit: cover;
  width: 100%;
  height: 580px;
}

@media (width <=1000px) {
  .single-main__swiper-main img {
    height: 280px;
  }

  .single-main__swiper-main {
    width: 100%;
  }
}

.single-main__swiper-main-wrapper-prev {
  width: 40px;
  height: 40px;
}

.single-main__swiper-main-wrapper-prev:after {
  display: none;
}

.single-main__swiper-main-wrapper-next {
  width: 40px;
  height: 40px;
}

.single-main__swiper-main-wrapper-next:after {
  display: none;
}

.single-main__content {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.single-main__content-item {
  border-bottom: 1px solid #f8f7f729;
  padding-bottom: 15px;
}

.single-main__content-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-main__content-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}

.single-main__colors-btns {
  align-items: center;
  gap: 10px;
  display: flex;
}

.single-main__colors-btns button {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.single-main__colors-btns button.active {
  width: 28px;
  height: 28px;
  position: relative;
}

.single-main__colors-btns button.active:after {
  content: "";
  border: 1px solid #8c0022;
  width: 36px;
  height: 36px;
  padding: 4px;
  position: absolute;
}

.single-main__colors-text {
  letter-spacing: .01em;
  color: #f8f7f7;
  margin-top: 4px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
}

.single-main__content-descr p {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-main__content-descr p {
    font-size: 14px;
  }
}

.single-main__content-attributes {
  border: none;
  padding: 0;
}

.single-main__attributes-item {
  border-bottom: 1px solid #f8f7f729;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  display: flex;
}

.single-main__attributes-title {
  letter-spacing: .01em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-main__attributes-title {
    font-size: 14px;
  }
}

.single-main__attributes-value {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-main__attributes-value {
    font-size: 14px;
  }
}

.single-main__content-row {
  align-items: center;
  gap: 10px;
  display: flex;
}

@media (width <=1000px) {
  .single-main__content-row {
    flex-direction: column;
    align-items: start;
  }
}

.single-main__wish-btn {
  letter-spacing: .02em;
  color: #f8f7f7;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

@media (width <=1000px) {
  .single-main__wish-btn {
    font-size: 14px;
  }
}

.single-main__srav-btn {
  letter-spacing: .02em;
  color: #f8f7f7;
  align-items: center;
  gap: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

@media (width <=1000px) {
  .single-main__srav-btn {
    font-size: 14px;
  }
}

.single-main__articul-btn {
  letter-spacing: .02em;
  color: #f8f7f766;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

@media (width <=1000px) {
  .single-main__articul-btn {
    margin: 0;
    font-size: 14px;
  }
}

.single-main__content-btns {
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: auto;
  display: flex;
}

.single-main__content-btns .btn {
  width: 100%;
  max-width: none !important;
}

.single-main__content-btns .one-click {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.single-main__content-btns .one-click div {
  position: relative;
}

.single-main__content-btns .one-click div span {
  z-index: 1;
}

.single-main__content-btns .one-click svg {
  z-index: -1;
  position: absolute;
  top: -12px;
}

@media (width <=1000px) {
  .single-main__content-btns .one-click {
    font-size: 14px;
  }
}

.single-descr {
  margin: 50px 0;
  padding: 40px 0;
}

.single-descr__btns {
  align-items: center;
  display: flex;
}

@media (width <=1000px) {
  .single-descr__btns {
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .single-descr__btns::-webkit-scrollbar {
    height: 3px;
  }
}

.single-descr__btn {
  letter-spacing: .02em;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.single-descr__btn--active {
  border-color: #8c0022;
}

@media (width <=1000px) {
  .single-descr__btn {
    min-width: 150px;
    font-size: 16px;
  }
}

.single-descr__content {
  padding-top: 20px;
  display: none;
}

.single-descr__content--active {
  flex-direction: column;
  display: flex;
}

.single-descr__content--active.single-descr__content-third {
  display: grid;
}

.single-descr__content-first p {
  letter-spacing: .02em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__content-first p {
    font-size: 14px;
  }
}

.single-descr__content-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__content-title {
    font-size: 18px;
  }
}

.single-descr__content-sec {
  gap: 20px;
}

.single-descr__sec-banner {
  background: #313b48;
  align-items: center;
  gap: 20px;
  padding: 20px;
  display: flex;
}

@media (width <=1000px) {
  .single-descr__sec-banner {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 10px;
  }
}

.single-descr__banner-texts {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.single-descr__banner-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__banner-title {
    font-size: 16px;
  }
}

.single-descr__banner-text {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__banner-text {
    font-size: 14px;
  }
}

.single-descr__sec-text {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.single-descr__sec-text p {
  letter-spacing: .02em;
  color: #f8f7f799;
  gap: 5px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
  display: flex;
}

.single-descr__sec-text p svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .single-descr__sec-text p {
    font-size: 14px;
  }
}

.single-descr__text-bold {
  letter-spacing: .01em;
  color: #f8f7f7;
  padding: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__text-bold {
    font-size: 14px;
  }
}

.single-descr__sec-red {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: linear-gradient(90deg, #8c0022 0%, #75001c 100%);
  padding: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__sec-red {
    padding: 10px;
    font-size: 14px;
  }
}

.single-descr__content-third {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (width <=1000px) {
  .single-descr__content-third {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.single-descr__third-col {
  background: #1b1819;
  padding: 20px;
}

@media (width <=1000px) {
  .single-descr__third-col {
    padding: 10px;
  }
}

.single-descr__col-item {
  align-items: start;
  gap: 8px;
  margin-bottom: 15px;
  display: flex;
}

.single-descr__col-item:last-child {
  margin-bottom: 0;
}

.single-descr__item-texts {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.single-descr__item-title {
  letter-spacing: .01em;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__item-title {
    font-size: 14px;
  }
}

.single-descr__item-text {
  letter-spacing: .02em;
  color: #f8f7f799;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 125%;
}

@media (width <=1000px) {
  .single-descr__item-text {
    font-size: 14px;
  }
}

.single-descr__fourth-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.single-descr__fourth-row a {
  letter-spacing: .01em;
  color: #f8f7f7;
  background: #1b1819;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.single-descr__fourth-row a svg {
  flex-shrink: 0;
}

@media (width <=1000px) {
  .single-descr__fourth-row a {
    font-size: 14px;
  }

  .single-descr__fourth-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1510px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

html,
body {
  background: #1d1a1b;
  font-family: Roboto, sans-serif;
}

main {
  padding-top: 200px;
}

@media (width <=1000px) {
  main {
    padding-top: 140px;
  }
}

.btn {
  letter-spacing: .01em;
  text-align: center;
  color: #f8f7f7;
  background: #8c0022;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: max-content;
  padding: 12px 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  display: flex;
}

.btn--white {
  color: #8c0022;
  background: #f8f7f7;
}

.btn--hollow {
  color: #8c0022;
  background: none;
  border: 1px solid #8c0022;
}

@media (width <=1000px) {
  .btn {
    padding: 12px;
    font-size: 13px;
  }
}

.section-title {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #f8f7f7;
  border-bottom: 1px solid #f8f7f729;
  margin-bottom: 40px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 40px;
  font-weight: 600;
}

@media (width <=700px) {
  .section-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.section-big {
  padding: 100px 0;
}

@media (width <=1000px) {
  .section-big {
    padding: 50px 0;
  }
}

.black-bg {
  background: linear-gradient(90deg, #1b1819 0%, #161314 100%);
}

.page-head {
  border-bottom: 1px solid #f8f7f729;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  display: flex;
}

.page-breads {
  align-items: center;
  gap: 10px;
  display: flex;
}

.page-breads a {
  letter-spacing: .01em;
  text-decoration-skip-ink: none;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 125%;
  text-decoration: underline;
}

.page-breads span {
  letter-spacing: .02em;
  color: #f8f7f766;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 125%;
}

.title {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #f8f7f7;
  font-family: Roboto, sans-serif;
  font-size: 48px;
  font-weight: 600;
}

@media (width <=1000px) {
  .title {
    font-size: 32px;
  }
}

.wish-page__content {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

@media (width <=1400px) {
  .wish-page__content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (width <=1100px) {
  .wish-page__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <=700px) {
  .wish-page__content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.icon-link img {
  width: 18px;
  height: 18px;
}

.cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: 8px;
  background: #1e1e1e;
  color: #F8F7F7;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 320px;
}

.cart-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast--success {
  border-left: 4px solid #4CAF50;
}

.cart-toast--error {
  border-left: 4px solid #E53935;
}

.cart-btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}



.single-main__price {
  display: flex;
  align-items: end;
  gap: 20px;
}


.catalog-page__content-cards {
  position: relative;
  min-height: 200px;
}

.catalog-page__content-cards.is-loading {
  pointer-events: none;
}

.catalog-page__content-cards.is-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(2px);
  z-index: 5;
  border-radius: 12px;
}

.catalog-page__content-cards.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 3px solid rgba(248, 247, 247, 0.25);
  border-top-color: #8C0022;
  border-radius: 50%;
  z-index: 6;
  animation: catalog-spin 0.7s linear infinite;
}

@keyframes catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

/* skeleton-карточки на первую загрузку */
.catalog-skeleton-card {
  background: rgba(248, 247, 247, 0.04);
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.catalog-skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(248, 247, 247, 0.06), transparent);
  animation: catalog-shimmer 1.4s infinite;
}

@keyframes catalog-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.header__search-wrapper {
  width: 100%;
}

.dgwt-wcas-search-wrapp {
  max-width: none !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border: none !important;
}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  background-color: #181113;
}

.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
  display: none;
}

.dgwt-wcas-search-wrapp {
  min-width: auto;
}