.catalog-element {
  margin-top: 30px;
  margin-bottom: 80px;
}
.catalog-element .main-swiper {
  background: var(--card);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.catalog-element .main-swiper .swiper-wrapper .swiper-slide.zoom {
  cursor: pointer;
}
.catalog-element .main-swiper .swiper-wrapper .swiper-slide .img-wrapper {
  position: relative;
  padding-top: 77%;
}
.catalog-element .main-swiper .swiper-wrapper .swiper-slide .img-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.catalog-element .thumbs-swiper .swiper-wrapper .swiper-slide {
  background: var(--card);
  border-radius: 15px;
}
.catalog-element .thumbs-swiper .swiper-wrapper .swiper-slide .img-wrapper {
  position: relative;
  padding-top: 77%;
}
.catalog-element .thumbs-swiper .swiper-wrapper .swiper-slide .img-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.catalog-element .top {
  display: flex;
  grid-column-gap: 30px;
  margin-bottom: 80px;
}
.catalog-element .top__left {
  width: 40%;
  height: max-content;
}
.catalog-element .top__right {
  width: 60%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.catalog-element .top__right .element-title {
  font-size: 38px;
  margin-bottom: 30px;
}
.catalog-element .top__properties {
  display: flex;
  flex-direction: column;
}
.catalog-element .top__properties .prop-row {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 15px;
}
.catalog-element .top__properties .prop-row:last-child {
  margin-bottom: 0px;
}
.catalog-element .top__properties .prop-row__name {
  text-align: left;
  color: var(--main-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  width: 50%;
  padding-right: 5px;
}
.catalog-element .top__properties .prop-row__value {
  width: 50%;
  color: var(--head);
  text-align: right;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
}
.catalog-element .top__offer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column-gap: 15px;
  padding-top: 20px;
}
.catalog-element .top__price {
  color: var(--head, #001B2B);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
}
.catalog-element .tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  margin-bottom: 40px;
}
.catalog-element .tabs__buttons .tab-btn {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 1px;
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background 0.3s, color 0.3s ease;
}
@media (min-width: 992px) {
  .catalog-element .tabs__buttons .tab-btn:hover {
    background: var(--primary);
    color: var(--card);
  }
}
.catalog-element .tabs__buttons .tab-btn.active {
  background: var(--primary);
  color: var(--card);
}
.catalog-element .tabs__content .tab-body {
  display: none;
}
.catalog-element .tabs__content .tab-body.active {
  display: block;
}
.catalog-element .tabs__content .tab-body .cert-wrapper {
  display: flex;
  flex-direction: column;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: max-content;
  max-width: 100%;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item:last-child {
  margin-bottom: 0px;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item__icon {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background-color: var(--primary);
  border-radius: 50%;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item__icon svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item__name {
  transition: color 0.3s ease;
  margin-bottom: 0px;
}
.catalog-element .tabs__content .tab-body .cert-wrapper .cert-item:hover .cert-item__name {
  color: var(--primary);
}

@media (max-width: 1200px) {
  .catalog-element {
    margin-bottom: 40px;
  }
  .catalog-element .top {
    margin-bottom: 40px;
  }
  .catalog-element .top__right .element-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .catalog-element {
    margin-top: 20px;
  }
  .catalog-element .top {
    flex-direction: column;
  }
  .catalog-element .top__title {
    margin-bottom: 30px;
  }
  .catalog-element .top__left {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .catalog-element .top__right {
    width: 100%;
  }
  .catalog-element .tabs__buttons {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    grid-gap: 0px;
  }
  .catalog-element .tabs__buttons .tab-btn {
    font-size: 16px;
    padding: 10px;
    margin-right: 10px;
  }
  .catalog-element .tabs__buttons .tab-btn:last-child {
    margin-right: 0px;
  }
}
@media (max-width: 480px) {
  .catalog-element .top__properties .prop-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .catalog-element .top__properties .prop-row__name {
    font-size: 12px;
  }
  .catalog-element .top__properties .prop-row__value {
    font-size: 12px;
  }
  .catalog-element .top__price {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .catalog-element .top__offer {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-element .tabs__content .tab-body .cert-wrapper .cert-item__icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}