/* Product Characteristics Accordion = START */

.product-characteristics {
  margin-top: 20px;
}

.product-characteristics__header {
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  color: #141414;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  cursor: pointer;
}

.product-characteristics__header svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-characteristics.is-open .product-characteristics__header svg {
  transform: rotate(180deg);
}

.product-characteristics__body {
  padding-top: 15px;
}

.product-characteristics__list .attribute {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 10px 25px 10px 14px;
}

.product-characteristics__list .attribute .name {
  color: #6b6b6b;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
}

.product-characteristics__list .attribute .text {
  color: #141414;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
}

/* Ховаємо всі характеристики після 6 */
.product-characteristics:not(.is-open) .product-characteristics__list .attribute:nth-child(n + 7) {
  display: none;
}

.product-characteristics__more {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
  padding: 4px 0px;
  height: 32px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.product-characteristics__more > span{
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-characteristics__more .text-close {
  display: none;
}

.product-characteristics.is-open .product-characteristics__more .text-open {
  display: none;
}

.product-characteristics.is-open .product-characteristics__more .text-close {
  display: flex;
}

.product-characteristics.is-short .product-characteristics__more {
  display: none;
}

/* Product Characteristics Accordion = END */

/* START --- DESCRIPTION STYLE --- START */
.attribute_header {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
}

.product_description .description {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product_description.is-open .description {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
  max-height: none;
}

.product_description .button_more svg {
  transition: transform 0.3s ease;
}


/* END --- DESCRIPTION STYLE --- END */



/* START --- PRODUCT ADVENTAGE STYLE --- START */



.data-product #product .product-advantages {
  max-width: 390px;
  width: 100%;
  flex-shrink: 0;
}

.mobile .data-product #product .product-advantages {
  width: 100%;
}

#product .btn_call {
  display: flex;
  align-items: center;
  justify-content: center;  
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  background: #11A522;
  padding: 12px 24px;
  position: relative;
  border-radius: 100px;
  gap: 10px;
  margin-bottom: 30px;
  transition: 0.2s;
}

#product .btn_call:hover {
  background: #198125;
}

.mobile #product .btn_call {
  display: none;
}

#product .btn_call.mob {
  display: none;
}

.mobile #product .btn_call.mob {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

#product .btn_call img {
  position: absolute;
  bottom: 0;
  right: 12px;
  width: 53px;
}

.product-advantages .product_description .description_title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 12px;
}

.product-advantages .product_description .description,
.product-advantages .product_description .description p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #525252;
}

.product-advantages .product_description .button_more {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
  padding: 4px 0px;
  height: 32px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.product-advantages__card {
  padding: 14px 22px;
  background: #fbf9f8;
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
}

.product-advantages__card img {
  margin-top: 20px;
  width: 20px;
  height: 20px;
}

.product-advantages__card .add_info .product-advantages__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.product-advantages__card .add_info .product-advantages__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #4c4c4c;
}

/* END --- PRODUCT ADVENTAGE STYLE --- END */




.products_to_category {
  position: relative;
  z-index: 2;
}

.products_view {
  position: relative;
  z-index: 1;
}

#product-product {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.mobile #product-product {
  padding-top: 0;
  padding-bottom: 0px;
  overflow: hidden;
}


.main-product {
  position: relative;
  margin-bottom: 0px;
  gap: 15px;
  display: flex;
}

.mobile .main-product {
  display: block !important;
  margin-bottom: 0px;
  padding-top: 0;
  border-top: 0;
}

.main-product > .main-slide {
  overflow: hidden;
  position: relative;
  height: max-content;
  border-radius: 5px;
  width: 585px;
  flex-shrink: 0;
}

.open_img {
  position: absolute;
  right: 23px;
  top: 32px;
  z-index: 10;
}

.mobile .open_img {
  right: 15px;
  top: 20px;
}

.mobile .main-product > .main-slide {
  width: calc(100% + 10px);
  margin: 0 -5px 10px;
}

.main-product > .main-slide .main-image-section {
  position: relative;
  height: max-content;
  margin-bottom: 10px;
}

.main-product > .main-slide .main-image-section.has_not_img {
  width: calc(100% - 10px);
}

.mobile .main-product > .main-slide .main-image-section.has_not_img {
  width: calc(100%);
}

.mobile .main-product > .main-slide .main-image-section {
  width: 100%;
}

.main-product > .main-slide .main-image-section .big-img img.img-responsive {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
}

.mobile .main-product > .main-slide .main-image-section .big-img img {
  border-radius: 0px;
}

.main-product > .main-slide .main-image-section .big-img img {
  mix-blend-mode: darken;
}


.mobile .main-product .list-main-image {
  width: 100%;
  background-color: #fff;
}

.mobile .main-product .list-main-image .slick-list {
  height: max-content;
}

.mobile .main-product > .data-product {
  width: 100%;
}

.data-product #product {
  display: flex;
  gap: 30px;
  width: 100%;
}

.mobile .data-product #product {
  flex-direction: column;
  width: 100%;
  gap: 5px;
  padding-top: 0px;
}

.data-product #product .product_info_wrapp {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(100% - 420px);
}

.mobile .data-product #product .product_info_wrapp {
  gap: 0;
}

.data-product #product .product_info_wrapp .product_information .sticker_wrapp {
  display: flex;
  align-items: center;
}

.data-product #product .product_info_wrapp .product_information .sticker_wrapp .sticker_sale {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  background: #ff3030;
  height: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}

#product .point {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  height: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: #3a3227;
  width: max-content;
  border-radius: 3px;
}

#product .point svg {
  margin-right: 5px;
}

.data-product #product .product_info_wrapp .product_information .sticker_wrapp .stock {
  display: block;
  width: max-content;
  margin-left: auto;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
}

.mobile .data-product #product .product_info_wrapp .product_information .sticker_wrapp .stock {
  font-size: 10px;
}

.stock.green {
  border-radius: 3px;
  color: #7ac146;
}

.stock.read {
  border-radius: 3px;
  color: #ff4900;
}

.product_title_wrapp {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile .product_title_wrapp {
  margin-bottom: 0px;
  display: block;
}

.product_title_wrapp h1 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0;
}

.product_title_wrapp .product__wishlist {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding-top: 1px;
}

.product_title_wrapp .product__wishlist svg path {
  transition: 0.2s;
}

.product_title_wrapp .product__wishlist.active svg path {
  fill: #000;
}

.product_information .model {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #3c3d3f;
  background: #fbf9f8;
  padding: 3px 14px;
  border-radius: 5px;
}

.mobile .product_information .model {
  width: max-content;
}

.mobile .product-groups .product-group .product-group-name {
  font-size: 14px;
}

.product_information .price_wrapp .list-price .new-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #3a3227;
}

.product_information .price_wrapp .list-price .old-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  color: #807f7f;
}

.product_information .price_wrapp .group-btn-buy {
  display: flex;
  align-items: center;
  gap: 25px;
}

.product_information .price_wrapp .group-btn-buy .btn-buy-one {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #3a3227;
  gap: 15px;
}

.product_information .btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  background: #3a3227;
  padding: 10px 35px;
  border-radius: 5px;
}

.mobile .product_information .btn-buy {
  width: 100%;
  justify-content: space-between;
}

.data-product #product .product_info_wrapp .product-tabs {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  padding: 34px;
}

.mobile .data-product #product .product_info_wrapp .product-tabs {
  padding: 20px 15px;
}

.product_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.arrow-main-slide {
  z-index: 10;
  display: none;
  align-items: center;
  gap: 13px;
  position: absolute;
  right: 30px;
  bottom: 55px;
}

.mobile .arrow-main-slide {
  display: none;
}

.arrow-main-slide button {
  position: relative;
}

button.histori_back {
  display: flex;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
}

.mobile .histori_back {
  position: absolute;
  left: 15px;
  top: 20px;
  z-index: 5;
}

button.histori_back svg {
  margin-right: 10px;
}

.product_nav_wrapper .model {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #807f7f;
}

.mobile .product_nav_wrapper {
  margin-top: -38px;
  margin-bottom: 17px;
}

.price_wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile .price_wrapp {
  margin-bottom: 30px;
}

.price_wrapp .list-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #0f0f0f;
}

.price_wrapp .list-price .old-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  color: #807f7f;
}

.price_wrapp .wish_list_group button {
  background-color: #f0f0f0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.price_wrapp .wish_list_group button svg {
  width: 11px;
}
.product-accordion__item {
  border-bottom: 1px solid #e5e5e5;
}


.product-accordion__header {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  cursor: pointer;
  position: relative;
}

.product-accordion__header::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #646464;
}

.product-accordion__header.is-active::after {
  content: '−';
}

.product-accordion__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #525252;
}

.product-accordion__body p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #525252;
}

.product-accordion__item.is-open .product-accordion__body {
  opacity: 1;
}

.product-accordion__item.is-open .product-accordion__body .product-accordion__inner {
  padding: 0 0 36px;
}

.attribute {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 12px;
  gap: 20px;
}

.attribute:nth-child(odd) {
  background: #fbf9f8;
}

.attribute .name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #585b61;
}

.attribute .text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: right;
  color: #000;
}

#product .product_sizes_wrap {
  position: relative;
}

#product .product_sizes_wrap a {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  bottom: -18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #141414;
}

#product .product_sizes_wrap a svg {
  margin-right: 15px;
}

.product_buttons {
  margin-bottom: 15px;
}

.product_buttons .qty {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  margin-bottom: 10px;
}

.product_buttons .number-spinner {
  display: flex;
}

.product_buttons .number-spinner button {
  background-color: #f4f4f4;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.product_buttons .number-spinner input {
  background-color: #f4f4f4;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font5);
  font-weight: 400;
  font-size: 21px;
  line-height: 129%;
  text-align: center;
  color: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_buttons .number-spinner .wish_list_group {
  margin-left: 10px;
}

.product_buttons .number-spinner .wish_list_group button {
  background: #d3ed34;
}


.section-buy .group-btn-buy {
  display: flex;
  gap: 10px;
}

.section-buy.disable .group-btn-buy {
  opacity: 50%;
  cursor: not-allowed;
  pointer-events: none;
}

.mobile .section-buy .group-btn-buy .btn-buy-one {
  width: 156px;
  padding: 0 10px;
}

.section-buy .group-btn-buy .btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 50px;
  background: #ff4900;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  padding: 15px;
}

.btn-buy.mobile {
  display: none;
}


.radio .control-label {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  padding-left: 0;
  margin-bottom: 10px;
}

div.required .control-label::after {
  display: none;
}

.product_options {
  width: 86%;
  margin-bottom: 30px;
}

.mobile .product_options {
  width: 100%;
}

.options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.options .radio {
  margin: 0;
}

.options .radio label {
  padding: 14px 22px;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #141414;
  transition: 0.3s ease-in-out;
}

.options input[type='radio']:checked + label {
  background-color: #fff;
  border: 1px solid #6a6f4c;
}

.text {
  margin: 0;
}

.text label {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  margin-bottom: 10px;
}

.text input.form-control {
  border: 1px solid #6a6f4c;
  width: 100%;
  height: 50px;
  border-radius: 0;
}

.data-product .panel-group {
  margin-bottom: 0;
}

.data-product .panel {
  box-shadow: none !important;
}

.data-product .panel-heading {
  border-bottom: 1px solid #d4d4d4;
  padding: 10px 0;
  padding-right: 10px;
}

.data-product .panel-heading .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-product .panel-heading .accordion-header .icon {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  gap: 10px;
}

.mobile .data-product .panel-heading .accordion-header .icon {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}

.plus-icon {
  --size: 10px;
  --thick: 2px;
  inline-size: var(--size);
  block-size: var(--size);
  position: relative;
  display: inline-block;
}

.plus-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #646464;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

/* горизонтальна риска */
.plus-icon span:first-child {
  width: 100%;
  height: var(--thick);
}

/* вертикальна риска */
.plus-icon span:last-child {
  width: var(--thick);
  height: 100%;
  transition: height 0.2s ease;
}

.data-product .accordion-content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #3b3b3b;
  min-height: 40px;
  padding: 0px;
  height: auto;
  margin: 10px 0;
}

.data-product .panel-group .panel + .panel {
  margin: 0;
}

.data-product .accordion-content .attribute {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.data-product .accordion-content .attribute .name {
  text-align: start;
  max-width: 40%;
}

.data-product .accordion-content .attribute .text {
  text-align: end;
  max-width: 40%;
}

/* коли секція відкрита (aria-expanded="true" або без класу collapsed) — вертикальна риска ховається */
.accordion-header[aria-expanded='true'] .plus-icon span:last-child {
  height: 0;
}

.data-product .panel .panel-body {
  border-top: 0 !important;
}

.productpage__carousel {
  position: relative;
}

.slider_block__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile .slider_block__title {
  margin-bottom: 25px;
}

.slider_block__title span {
  color: #d3ed34;
}

.slider_block__title .row-slide {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product__carousel--prev,
.product__carousel--next {
  position: relative;
  z-index: 50;
}

.mobile .product__carousel--prev,
.mobile .product__carousel--next {
  display: none;
}

#product-product .product__carousel--body {
  overflow: visible;
  -webkit-clip-path: inset(-9999px 0 -9999px 0);
  clip-path: inset(-9999px 0 -9999px 0);
}

#content .product__carousel--pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 0px;
}

.swiper-pagination {
  display: none;
}

#content .product__carousel--pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #d9d9d9;
  border: none;
  transition: 0.2s ease-in-out;
}

#content .product__carousel--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #27486C !important;
}

.list-main-image .slick-dots {
  display: none !important;
}

.mobile .list-main-image .slick-dots {
  display: none !important;
  justify-content: center;
  position: relative;
  bottom: unset;
  margin: 0;
  width: max-content;
  margin-left: auto;
  padding-right: 15px;
  gap: 3px;
}

.list-main-image .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.list-main-image .slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: #e2e2e2;
  border: none;
  transition: 0.2s ease-in-out;
  border-radius: 50%;
}

.list-main-image .slick-dots li.slick-active button {
  background-color: #1e1e1e;
}

.list-main-image .slick-dots li button::before {
  display: none;
}

@media screen and (max-width: 1550px) {
  .main-product > .main-slide .main-image-section {
    margin-right: 10px;
  }

  .main-product > .main-slide .main-image-section.has_not_img {
    margin-right: 0px;
  }

  .data-product #product .product_info_wrapp {
    width: 400px;
  }

  .product-groups {
    margin-bottom: 40px !important;
  }

  .product_information .price_wrapp .group-btn-buy {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .product_information .price_wrapp .group-btn-buy .btn-buy-one {
    font-size: 14px;
  }

  .main-product .main-slide .main-image-section {
    width: calc(100% - 80px);
    position: relative;
  }
}

@media (max-width: 1460px) {
  .main-product > .main-slide {
    width: 480px;
  }
}


@media(max-width: 767px){
  .products_to_category {
    overflow: hidden;
  }

  .products_view {
    overflow: hidden;
  }
}
@media (max-width: 1199px) {
  .data-product #product {
    flex-direction: column;
    gap: 10px;
  }

  .data-product #product .product_info_wrapp {
    width: 100%;
  }

  .data-product #product .product-advantages {
    width: 100%;
  }

}

@media (max-width: 900px) {
  .main-product > .main-slide {
    max-height: 750px;
    width: calc(100% - 300px);
  }
}

@media (max-width: 756px) {
  #product-product {
    padding-top: 0;
    padding-bottom: 65px;
    overflow: hidden;
  }

  .main-product {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 0;
  }

  .open_img {
    right: 15px;
    top: 20px;
  }

  .main-product > .main-slide {
    width: calc(100% + 10px);
    margin: 0 -5px 10px;
  }

  .main-product > .main-slide .main-image-section.has_not_img {
    width: 100%;
  }

  .main-product > .main-slide .main-image-section {
    width: 100%;
  }

  .main-product > .main-slide .main-image-section .big-img img {
    border-radius: 0;
  }

  .main-product .list-main-image {
    width: 100%;
    background-color: #fff;
  }

  .main-product .list-main-image .slick-list {
    height: max-content;
  }

  .main-product > .data-product {
    width: calc(100% - 585px);
  }

  .data-product #product {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .data-product #product .product_info_wrapp {
    width: 100%;
  }

  .data-product #product .product_info_wrapp .product_information {
    margin-bottom: 30px;
  }

  .mobile .data-product #product .product_info_wrapp .product_information {
    margin-bottom: 0px;
  }

  .data-product #product .product_info_wrapp .product_information .sticker_wrapp .stock {
    font-size: 10px;
  }

  .product_title_wrapp {
    margin-bottom: 10px;
  }

  .product-groups .product-group .product-group-name {
    font-size: 14px;
  }

  .product_information .btn-buy {
    width: 100%;
    justify-content: space-between;
  }

  
  .btn-buy.desc {
    display: none;
  }
  .btn-buy.mobile {
    display: flex;
  }


  .data-product #product .product_info_wrapp .product-tabs {
    padding: 20px 15px;
  }

  .data-product #product .product-advantages {
    width: 100%;
  }

  .data-product #product .product-advantages .product-advantages__card {
    padding: 20px 15px;
  }

  .data-product #product .product-advantages .product-advantages__card:not(:last-child) {
    margin-bottom: 5px;
  }

  .arrow-main-slide {
    display: none;
  }

  .histori_back {
    position: absolute;
    left: 15px;
    top: 20px;
    z-index: 5;
  }

  .product_nav_wrapper {
    margin-top: -38px;
    margin-bottom: 17px;
  }

  .price_wrapp {
    margin-bottom: 30px;
  }

  .section-buy .group-btn-buy .btn-buy-one {
    width: 156px;
    padding: 0 10px;
  }

  .product_options {
    width: 100%;
  }

  .data-product .panel-heading .accordion-header .icon {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
  }

  .slider_block__title {
    margin-bottom: 23px;
  }

  .product__carousel--prev,
  .product__carousel--next {
    display: none;
  }

  .list-main-image .slick-dots {
    display: none !important;
    justify-content: center;
    position: relative;
    bottom: unset;
    margin: 0;
    width: max-content;
    margin-left: auto;
    padding-right: 15px;
    gap: 3px;
  }

  .products_to_category {
    overflow: hidden;
  }

  .products_view {
    overflow: hidden;
  }
}