/* Product Page = START */

/* Верхнє меню "Про товар / Характеристики / Опис" над .main-product.
  Розтягнуте на всю ширину екрана (як .product_slide--wrapper нижче на сторінці) — і сам
  блок, і білий фон виходять за межі .container, вміст же (.product-shortnav__inner)
  лишається вирівняним по контенту сторінки. */
.product-shortnav {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.product-shortnav__inner {
  margin-top: 17px;
  padding: 16px 47px 0 47px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.product-shortnav__item {
  position: relative;
  padding: 0 0 16px;
  border: none;
  background: none;
  cursor: pointer;
  color: #696969;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  transition: color 0.2s ease;
}

.product-shortnav__item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #1a92db;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-shortnav__item.is-active {
  color: #191d23;
  font-weight: 600;
}

.product-shortnav__item.is-active::after {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .product-shortnav__inner {
    gap: 24px;
    padding: 16px 15px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-shortnav__inner::-webkit-scrollbar {
    display: none;
  }

  .product-shortnav__item {
    white-space: nowrap;
  }
}

.product__item--stickers.product__item--stickers_shifted {
  left: 145px;
}

.stickers_image_product {
  position: absolute;
  top: 10px;
  right: 10px;
  left: unset;
  z-index: 2;
}

.arrow-main-slide .slick-arrow {
  display: block;
}

.is-hidden {
  display: none;
}

.products_to_category {
  position: relative;
  z-index: 2;
}

.products_view {
  position: relative;
  z-index: 1;
}
/*
.mobile #product-product {
  padding-top: 0;
  padding-bottom: 65px;
  overflow: hidden;
}
*/

#product-product .product_slide-heading {
  margin-bottom: 17px;
}

#product-product .product_slide--wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.main-product {
  position: relative;
  margin-top: 8px;
  margin-bottom: 13px;
  /* 24px на ~992px -> 133px на ~1600px (макет), далі не росте */
  /* gap: clamp(24px, calc(18vw - 155px), 133px); */
  gap: 22px;
  background-color: #fff;
  border-radius: 15px;
}
/*
.mobile .main-product {
  display: block !important;
  margin-bottom: 40px;
}
*/
.main-product > .main-slide {
  padding: 32px 0 45px 35px;
  width: 662px;
  min-width: 0;
  flex-shrink: 1;
  flex-wrap: wrap;
  overflow: visible;
  position: relative;
  height: max-content;
  border-radius: 0;
}

.main-product > .data-product {
  margin-right: 97px;
  width: 655px;
  min-width: 0;
  flex-shrink: 1;
}

.open_img {
  position: absolute;
  right: 22px;
  top: 17px;
  z-index: 10;
  pointer-events: none;
}
/*
.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 {
  margin-bottom: 0;
  width: 100%;
  position: relative;
  height: max-content;
}

.main-product > .main-slide .main-image-section.has_not_img {
  width: 100%;
}
/*
.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 {
  background-color: #fff;
  border-radius: 0;
  width: 100%;
  display: block;
}
/*
.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;
}

.list-main-image {
  border-radius: 5px;
  overflow: hidden;
}

.list-main-image.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* .slider-nav — горизонтальна стрічка мініатюр під головним фото (однаково на мобілці
  й десктопі). Ініціалізується як slick-слайдер із asNavFor до .list-main-image (див. JS
  у product.twig) — тому мініатюри можна свайпати/тягнути мишею чи пальцем, а не лише
  клікати. .main-product .slider-nav:not(.slick-initialized) — запасний варіант (звичайний
  горизонтальний скрол), поки slick ще не підвантажився/не ініціалізувався. */
.main-product .slider-nav {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 5px;
}

.main-product .slider-nav:not(.slick-initialized) {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.main-product .slider-nav:not(.slick-initialized)::-webkit-scrollbar {
  display: none;
}

.main-product .slider-nav .slick-slide {
  margin-right: 8px;
  cursor: pointer;
}

.main-product .slider-nav .image-thumb {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.main-product .slider-nav .image-thumb.slick-active,
.main-product .slider-nav .slick-slide.slick-current .image-thumb {
  /* border-color: #1a92db; */
}

.main-product .slider-nav .image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/*
.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: 10px;
}
/*
.mobile .data-product #product {
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
*/
.data-product #product .product_info_wrapp {
  width: 100%;
}
/*
.mobile .data-product #product .product_info_wrapp {
  width: 100%;
}
*/
.data-product #product .product_info_wrapp .product_information {
  width: 100%;
  margin-bottom: 23px;
}
/*
.mobile .data-product #product .product_info_wrapp .product_information {
  padding: 20px 15px;
  margin-bottom: 5px;
}
*/
.data-product #product .product_info_wrapp .product_information .sticker_wrapp {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.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(--main-font);
  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(--main-font);
  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(--main-font);
  font-weight: 400;
  font-size: 12px;
}
/*
.mobile .data-product #product .product_info_wrapp .product_information .sticker_wrapp .stock {
  font-size: 10px;
}
*/
.product_meta_row .stock.green {
  background-color: #27b177;
}

.product_meta_row .stock.red {
  background-color: #ff4900;
}

.product_title_wrapp {
  margin-bottom: 20px;
}

.product_title_wrapp .breadcrumb {
  margin-top: 22px;
  margin-bottom: 2px;
}

.product_title_wrapp .breadcrumb > li a,
.product_title_wrapp .breadcrumb > li span {
  color: #696969;
}
/*
.mobile .product_title_wrapp {
  margin-bottom: 10px;
}
*/
.product_title_wrapp h1 {
  margin: 0 0 16px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #0f0f0f;
}

.product_title_wrapp .product__wishlist {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #f8f6ff;
  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 {
  margin: 0;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  color: #696969;
}

.product_meta_row {
  margin-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px 16px;
}

.product_stock_model {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product_meta_row .stock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 3px 10px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  border-radius: 3px;
}
/*
.mobile .product_meta_row .stock {
  font-size: 10px;
}
*/
.product_meta_row .brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #696969;
}

.product_meta_row .brand__link {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}
/*
.mobile .product-groups .product-group .product-group-name {
  font-size: 14px;
}
*/
.product_information .price_wrapp .list-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product_information .price_wrapp .list-price .new-price {
  margin-right: 4px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #0f0f0f;
}

.product_information .price_wrapp .list-price .new-price_sale {
  /* color: #a31022; */
  color: #27b177;
}

.product_information .price_wrapp .list-price .old-price {
  margin-top: 10px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: line-through;
  color: #696969;
}

.product_information .price_wrapp .list-price .old-price span {
  text-decoration: line-through;
}

.product_information .price_wrapp .list-price .sticker_sale {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 14px;
  /* background: #a31022; */
  background: #27b177;
  height: 20px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  color: #fff;
  border-radius: 3px;
}

.price_wrapp .product__wishlist {
  padding-top: 4px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  border-radius: 50%;
  overflow: hidden;
}

.price_wrapp .product__wishlist.in__wishlist {
  background-color: #0dbadc;
}

.btn-buy.is-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

.btn-buy-one.is-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

/* "Купити в 1 клік" + "Додати до кошику" завжди в один рядок (flex), на всіх ширинах —
  раніше на вузьких екранах вони "розповзались": .btn-buy-one лишався тут, а звичайна
  "Додати до кошику" ховалась і замінювалась окремою повношириною .btn-buy.mobile нижче. */
.product_information .group-btn-buy {
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.product_information .group-btn-buy .btn-buy-one {
  flex: 0 0 181px;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #292829;
  border-radius: 3px;
  border: 1px solid #292829;
  white-space: nowrap;
}

.product_information .group-btn-buy .btn-buy-one svg {
  flex-shrink: 0;
}

/* .btn-buy тут — це "Додати до кошику" (.desc), і в цьому контейнері вона завжди
  повинна займати решту ширини поряд з .btn-buy-one, а не 100% (це задає загальне
  правило .product_information .btn-buy{width:100%} для мобільного окремого варіанта) */
.product_information .group-btn-buy .btn-buy {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.product_information .btn-buy {
  padding: 10px 35px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #fff;
  background: #292829;
  border-radius: 3px;
}
/*
.mobile .product_information .btn-buy {
  width: 100%;
  justify-content: space-between;
}
*/
.flyer-img {
  display: block;
  max-width: 160px;
  max-height: 160px;
  border-radius: 5px;
  background-color: #fff;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.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;
}
*/
/* Компактні рядки переваг (іконка + текст) під кнопкою "Додати до кошику" */
.data-product #product .product-advantages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 5px;
}

.data-product #product .product-advantages .product-advantages__card {
  padding: 17px;
  background-color: #fafafa;
  border-radius: 3px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.data-product #product .product-advantages .product-advantages__card:not(:last-child) {
  margin-bottom: 0;
}

.data-product #product .product-advantages .product-advantages__card img {
  margin-bottom: 0;
  max-width: 22px;
  flex-shrink: 0;
}

.data-product #product .product-advantages .product-advantages__card .product-advantages__title {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #433e3e;
  margin-bottom: 0;
}

.data-product #product .product-advantages .product-advantages__card .product-advantages__title p {
  margin-bottom: 0;
}

.data-product #product .product-advantages .product-advantages__card .product-advantages__text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #858585;
  margin-top: 2px;
}

.product_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* .arrow-main-slide — фінальні стилі нижче, у блоці "Slider arrows" */
.arrow-main-slide button {
  position: relative;
}

button.histori_back {
  display: flex;
  align-items: center;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #141414;

  display: none;
}
/*
.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(--main-font);
  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 {
  margin-bottom: 26px;
  padding: 18px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background-color: #fafafa;
  border-radius: 3px;
}
/*
.mobile .price_wrapp {
  margin-bottom: 30px;
}
*/
.price_wrapp .list-price {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  color: #0f0f0f;
}

.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-tabs .product-tabs__content p,
.product-tabs .product-tabs__content ul,
.product-tabs .product-tabs__content ol {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.product-tabs .product-tabs__content .attribute {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  gap: 20px;
  border-bottom: 1px solid #dcdcdc;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.product-tabs .product-tabs__content .attribute .name {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.product-tabs .product-tabs__content .attribute .text {
  font-family: var(--main-font);
  font-weight: 300;
  font-size: 14px;
  text-align: right;
  color: #000;
}

.product-tabs .product-tabs__content .attr-more-btn {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffa91e;
  margin-top: 14px;
}

.product-tabs .product-tabs__content .attribute.is-extra {
  max-height: 44px;
  opacity: 1;
}

.product-tabs .product-tabs__content.is-collapsed .attribute.is-extra {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.product-tabs .product-tabs__content .attr-more-btn {
  transition: opacity 0.25s ease;
}

#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(--main-font);
  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;
}

/* Окреме посилання "Підібрати розмір" (модалка з theme_default_product_info_image) */
#product .product_info_guide_wrap {
  margin-top: 10px;
}

#product .product_info_guide_wrap .toggle__product_info {
  display: flex;
  align-items: center;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #141414;
}

#product .product_info_guide_wrap .toggle__product_info svg {
  margin-right: 15px;
}

.product_buttons {
  display: none;
  margin-bottom: 15px;
}

.product_buttons label {
  display: block;
  color: #141414;
}

.product_buttons .qty {
  display: block;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  margin-bottom: 10px;
}

.product_buttons .number-spinner {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
}

.product_buttons .number-spinner button {
  background-color: #faf9ff;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.product_buttons .number-spinner button:disabled {
  cursor: no-drop;
}

.product_buttons .number-spinner button:disabled svg path {
  stroke: #ccc;
}

.product_buttons .number-spinner input {
  background-color: #faf9ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141414;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  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 {
  margin-bottom: 30px;
}

.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(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  padding: 15px;
}

.btn-buy.mobile {
  display: none;
}

.radio .control-label {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #191d23;
  padding-left: 0;
  margin-bottom: 13px;
}

div.required .control-label::after {
  display: none;
}

.control-label + .text-danger {
  display: inline-block;
  margin-left: 8px;
  font-size: 14px;
  text-transform: lowercase;
}

.control-label + .text-danger::first-letter {
  text-transform: uppercase;
}
/*
.product_options {
  width: 86%;
  margin-bottom: 10px;
}

.mobile .product_options {
  width: 100%;
}
*/
.options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.options .radio {
  margin: 0;
}

.options .radio label {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #121212;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.options .radio label:has(img) {
  padding: 3px;
  border: 1px solid #f0f0f0;
}

.options .radio label:not(:has(img)) {
  padding: 14px 22px;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
}

.options input[type='radio']:checked + label:has(img) {
  border-color: #6a6f4c;
}

.options input[type='radio']:checked + label:not(:has(img)) {
  background-color: #fff;
  border: 1px solid #6a6f4c;
}

.product-color-options .options {
  gap: 4px;
}

.product-color-options__scrollbar {
  display: none;
}

@media (max-width: 767.98px) {
  .product-color-options--swipe .options {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-color-options--swipe .options::-webkit-scrollbar {
    display: none;
  }

  .product-color-options--swipe .options .radio {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-color-options__scrollbar.product_slide--scrollbar {
    display: block;
    width: 100%;
    margin-top: 12px;
  }
}

.product-color-options__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

.product-color-options__label--image {
  padding: 0;
}

.product-color-options__label--image img {
  display: block;
  width: 90px;
  height: 60px;
  object-fit: cover;
}
/*
.js-color-option:checked + .product-color-options__label--image img {
  border-color: #6a6f4c;
}
*/
.product-color-options__swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.js-color-option:checked + .product-color-options__label .option-value-name {
  font-weight: 600;
}

.product-color-options__price {
  color: #6a6f4c;
}

.text {
  margin: 0;
}

.text label {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #191d23;
  margin-bottom: 13px;
}

.text input.form-control {
  border: 1px solid #6a6f4c;
  width: 100%;
  height: 50px;
  border-radius: 0;
}

/* panel-group (Опис / Характеристики / Розмір) тепер живе під .slider-nav, у колонці
  з фото (.main-slide), а не в .data-product — тож увесь блок тепер скопований на .main-product.
  .main-slide — flex-wrap ряд, тому panel-group теж має бути на всю ширину, окремим рядком */
.main-product .panel-group {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 34px;
  margin-bottom: 0;
}
/*
.mobile .main-product .panel-group {
  padding: 0;
}
*/
.main-product .panel {
  box-shadow: none !important;
  margin-bottom: 0;
}

/* panel-heading — статичний заголовок секції (не акордеон, нема кліку/розгортання) */
.main-product .panel-heading {
  /* border-bottom: 1px solid #e7eaee; */
  padding: 0 18px 0 0;
}

.main-product .panel-heading .icon {
  display: flex;
  align-items: center;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #1e1e1e;
}
/*
.mobile .main-product .panel-heading .icon {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}
*/
.main-product .accordion-content {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #191d23;
  min-height: 40px;
  padding: 0px;
  height: auto;
  margin: 15px 0 18px;
}

.main-product .panel-group .panel {
  background: transparent;
  border: 0;
}

.main-product .panel-group .panel + .panel {
  margin: 0;
}

.main-product .accordion-content .attribute {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-product .accordion-content .attribute .name {
  text-align: start;
  max-width: 40%;
}

.main-product .accordion-content .attribute .text {
  text-align: end;
  max-width: 40%;
}

/* Панелі завжди розгорнуті (не акордеон) — panel-body просто блок з відступом знизу */
.main-product .panel-body {
  padding: 0 0 8px;
  /* border-bottom: 1px solid #ebebeb; */
}

.main-product .accordion-content p,
.main-product .accordion-content ul,
.main-product .accordion-content ol {
  font-family: var(--main-font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: #433e3e;
}

.main-product .attr-more-btn {
  color: #1e1e1e;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-decoration: underline;
}

.main-product .accordion-content img {
  max-width: 100%;
  height: auto;
}

.main-product .accordion-content .attribute {
  box-sizing: border-box;
  padding: 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.35s ease,
    border-color 0.3s ease;
}

.main-product .accordion-content .attribute + .attribute {
  border-top: 1px solid #e7eaee;
}

.main-product .accordion-content .attribute .name {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  color: #191d23;
}

.main-product .accordion-content .attribute .text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  color: #191d23;
  line-height: normal;
  text-align: right;
}

.main-product .accordion-content .attribute .text .brand__link {
  color: #191d23;
  font-weight: 400;
  text-decoration: underline;
}

.main-product .accordion-content .attribute.is-extra {
  max-height: 44px;
  opacity: 1;
}

/* box-sizing: border-box вище + обнуління padding/border тут — інакше при max-height: 0
  padding (16px 8px) і border-top усе одно займають місце, і над кнопкою "Більше
  характеристик" лишається порожній простір від згорнутих .is-extra рядків */
.main-product .accordion-content.is-collapsed .attribute.is-extra {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-top-color: transparent;
}

.main-product .accordion-content .attr-more-btn {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  color: #1e1e1e;
  text-decoration: underline;
  margin-top: 12px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  transition: opacity 0.25s ease;
}

/* Опис товару: плавне розгортання за тим самим принципом, що й attr-more-btn —
  max-height з transition, перемикається класом по кліку на кнопку.
  overflow: hidden свідомо НЕ тут — щоб текст одразу показувався повністю, без
  обрізання, поки/якщо JS не встановить max-height (короткий опис або feature
  вимкнена конфігом — .is-clamped тоді просто не додається). */
.main-product .product-description__collapse.is-clamped {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.productpage__carousel {
  position: relative;
}

.slider_block__title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #1e1e1e;
  margin-bottom: 0;
  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: 6px;
}

.product__carousel--prev,
.product__carousel--next {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  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 {
  display: none !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 5px;
}

#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: #0f0f0f;
}
/*
.list-main-image .slick-dots {
  display: none !important;
}

.mobile .list-main-image .slick-dots {
  display: flex !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 {
  padding: 0;
  width: 6px;
  height: 6px;
  background-color: #ebebeb;
  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;
}

/* Десктоп: зображення стеком по 1 в ряд (слайдер вимкнено в JS для >=992px) */
@media (min-width: 992px) {
  .list-main-image:not(.slick-initialized) {
    display: block;
  }

  .list-main-image:not(.slick-initialized) .big-img {
    display: block;
    width: 100%;
  }

  .list-main-image:not(.slick-initialized) .big-img:last-child {
    margin-bottom: 0;
  }
}

.autocalc-product-price,
.autocalc-product-special,
.autocalc-product-tax,
.autocalc-product-points {
  display: inline-block;
  font-family: var(--main-font);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.autocalc-product-price.is-price-updating,
.autocalc-product-special.is-price-updating,
.autocalc-product-tax.is-price-updating,
.autocalc-product-points.is-price-updating {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.85;
}

@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: 100%;
  }

  .product_information .group-btn-buy .btn-buy-one {
    padding: 14px 16px;
    font-size: 14px;
  }

  .product_information .btn-buy {
    padding: 16px;
  }

  .main-product .main-slide .main-image-section {
    width: 100%;
    position: relative;
  }

  .main-product .slider-nav .image-thumb {
    width: 80px;
    height: 80px;
  }
  /*
  .main-product > .main-slide {
    width: 100%;
  }
  */
}
@media (max-width: 767.98px) {
  /* Виходить за межі .container на всю ширину екрана (як .list-product) */
  .products_to_category .product_slide--wrapper,
  .product_slide.products .product_slide--wrapper,
  .products_view .product_slide--wrapper {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .data-product #product {
    flex-direction: column;
    gap: 10px;
  }

  .main-product > .main-slide {
    width: 100%;
  }

  .main-product > .data-product {
    width: 100%;
  }

  .data-product #product .product_info_wrapp {
    width: 100%;
  }

  .data-product #product .product-advantages {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .arrow-main-slide,
  .product__carousel--prev,
  .product__carousel--next {
    display: none;
  }

  .main-product > .main-slide {
    width: 100%;
  }

  .main-product > .data-product {
    width: 100%;
  }

  .main-product {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 16px;
    gap: 0;
    border-bottom: 1px solid #ebebeb;
    border-radius: 0;
  }

  #product-product {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .open_img {
    display: flex;
    right: 10px;
    top: 10px;
  }

  .main-product > .main-slide {
    padding: 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }

  .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 .panel-group {
    padding: 0 10px;
  }

  .main-product .panel-group#product-accordion {
    margin-top: 20px;
  }

  .main-product .slider-nav {
    padding: 0 0 0 10px;
  }

  .main-product > .data-product {
    width: 100%;
  }

  .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: 16px;
  }

  .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: center;
  }

  /* .btn-buy.mobile — окрема повноширинова кнопка "Додати до кошику", яка раніше
    дублювала .btn-buy.desc на мобілці. Тепер обидві кнопки завжди разом, в один
    рядок, у .group-btn-buy (див. базові стилі вище) — .mobile-варіант лишається
    прихованим (успадковує display: none з базового правила). */

  .data-product #product .product_info_wrapp .product-tabs {
    padding: 20px 15px;
  }

  .data-product #product .product-advantages {
    margin-top: 5px;
    padding-top: 0;
    width: 100%;
  }

  .histori_back {
    position: absolute;
    left: 15px;
    top: 20px;
    z-index: 5;
  }

  .product_nav_wrapper {
    margin-top: -38px;
    margin-bottom: 17px;
  }

  .price_wrapp {
    margin-bottom: 16px;
    gap: 12px;
  }

  .section-buy .group-btn-buy .btn-buy-one {
    width: 156px;
    padding: 0 10px;
  }

  .product_options {
    width: 100%;
  }

  .product_slide-heading {
    margin-bottom: 12px;
  }

  .slider_block__title {
    margin-bottom: 0;
  }

  .list-main-image .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    bottom: 0;
    margin-top: 12px;
    gap: 8px;
  }

  /* Виходить за межі .container на всю ширину екрана (як .list-product) */
  .products_to_category .product_slide--wrapper,
  .product_slide.products .product_slide--wrapper,
  .products_view .product_slide--wrapper {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .data-product #product .product-advantages .product-advantages__card {
    gap: 21px;
  }

  .product_title_wrapp .breadcrumb > li a,
  .product_title_wrapp .breadcrumb > li span {
    font-size: 14px;
  }

  .product_meta_row {
    margin-bottom: 23px;
    row-gap: 12px;
  }

  .product_information .price_wrapp .list-price {
    flex: 1;
    font-size: 28px;
    gap: 12px;
  }

  .product_information .price_wrapp .list-price .sticker_sale {
    margin-left: auto;
  }

  .product_stock_model {
    gap: 12px;
  }

  .product_title_wrapp h1 {
    font-size: 20px;
  }

  .product_meta_row .stock {
    font-size: 10px;
  }

  .product-shortnav__inner {
    padding: 13px 0 0;
    gap: 20px;
  }

  .product_title_wrapp .breadcrumb {
    margin-top: 10px;
  }

  .radio .control-label,
  .control-label + .text-danger {
    font-size: 12px;
  }

  .options .radio label {
    font-size: 14px;
  }

  .data-product #product .product-advantages .product-advantages__card .product-advantages__title {
    font-size: 12px;
  }

  .main-product .accordion-content .attr-more-btn {
    margin-inline: auto;
    display: block;
  }

  .main-product .panel-heading .icon {
    font-size: 14px;
  }
}

/* Slider arrows = START */
.main-image-section {
  position: relative;
}

/* Стрілки по центру великого фото, кожна притиснута до свого краю (left/right: 0).
  pointer-events: none на контейнері — клік по самому фото поза колом кнопки проходить
  наскрізь (не блокується), pointer-events: auto повертаємо лише на самих кнопках. */
.arrow-main-slide {
  position: absolute;
  left: -17px;
  right: -17px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.arrow-main-slide .slick-prev,
.arrow-main-slide .slick-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 43px;
  border: 0;
  background: none;
  transition: opacity 0.2s ease;
  padding: 0;
  pointer-events: auto;
}

.arrow-main-slide .slick-prev:hover,
.arrow-main-slide .slick-next:hover {
  opacity: 0.75;
}

.arrow-main-slide .slick-prev::before,
.arrow-main-slide .slick-next::before {
  display: none;
}

.arrow-main-slide .slick-prev svg,
.arrow-main-slide .slick-next svg {
  width: 34px;
  height: 43px;
  display: block;
}

@media (max-width: 991.98px) {
  .arrow-main-slide {
    left: 10px;
    right: 10px;
  }

  .arrow-main-slide .slick-prev,
  .arrow-main-slide .slick-next {
    width: 34px;
    height: 43px;
  }

  .arrow-main-slide .slick-prev svg,
  .arrow-main-slide .slick-next svg {
    width: 34px;
    height: 43px;
  }
}
/* Slider arrows = END */

/* Mobile thumbs under the main slide = START
  .main-image-thumbs був окремим блоком тільки для мобілки — тепер цю саму роль
  (горизонтальна стрічка мініатюр під фото, однаково mobile/desktop) виконує .slider-nav,
  стилі якого вище. Лишено закоментованим на випадок відкату.
.main-image-thumbs {
  display: none;
}

@media (max-width: 767.98px) {
  .main-image-thumbs {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
    padding-bottom: 5px;
    overflow: visible;
  }

  .main-image-thumbs__track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-image-thumbs__track::-webkit-scrollbar {
    display: none;
  }

  .main-image-thumbs__item {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    margin-right: 5px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
  }

  .main-image-thumbs__item:last-child {
    margin-right: 0;
  }

  .main-image-thumbs__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
Mobile thumbs under the main slide = END */

/* Product Size Options = START */
.product-size-options {
  width: 100%;
  margin: 0 0 20px;
}

.product-size-options__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 16px;
}

.product-size-options__title {
  display: block;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.product-size-options__guide {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #433e3e;
}

.product-size-options__guide svg {
  margin-right: 3px;
  flex-shrink: 0;
}

.product-size-options__guide span {
  text-decoration: underline;
}

.product-size-options__list {
  /* display: grid; */
  /* grid-template-columns: repeat(8, 1fr); */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
}

.product-size-options__item {
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 50px;
}

.product-size-options__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-size-options__label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 60px;
  height: 50px;
  margin: 0;
  padding: 5px;
  border: 1px solid transparent;
  background: #fafafa;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-size-options__label:hover {
  background: #fff;
  border-color: #000;
}

.product-size-options__input:checked + .product-size-options__label {
  background: #fafafa;
  border-color: #000;
  color: #000;
}

.product-size-options__item.active .product-size-options__label {
  background: #121212;
  border-color: #121212;
  color: #fff;
}

.product-size-options__input:disabled + .product-size-options__label {
  background: #fff;
  border-color: #dedede;
  color: #a2a2a2;
  cursor: not-allowed;
}

.product-size-options__price {
  margin-left: 6px;
  font-size: 12px;
  opacity: 0.75;
}

.product-size-options + .text-danger,
.product-size-options .text-danger {
  margin-top: 8px;
  font-family: var(--main-font);
  font-size: 12px;
  color: #ff3030;
}

@media (max-width: 767.98px) {
  .product-size-options {
    margin-bottom: 16px;
  }

  .product-size-options__title {
    font-size: 13px;
  }

  .product-size-options__guide {
    font-size: 12px;
  }

  .product-size-options__list {
    gap: 8px;
  }

  .product-size-options__label {
    /* Старі мобільні розміри залишено для історії макета. */
    /* width: 100%; */
    /* min-height: 40px; */
    /* padding: 9px 4px; */
    width: 60px;
    height: 50px;
    min-height: 50px;
    padding: 5px;
    font-size: 13px;
  }
}

@media (max-width: 449.98px) {
  .product-size-options__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .product-size-options__item,
  .product-size-options__label {
    width: auto;
  }

  .product-size-options__label {
    height: 100%;
  }
}

/* Product Size Options = END */

/* Product Select Option = START */
.product-select-option {
  margin: 0 0 28px;
}

.product-select-option__title {
  display: block;
  margin: 0 0 12px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
}

.product-select-option__field {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #f4f4f4;
  font-family: var(--main-font);
  font-size: 14px;
  color: #141414;
}
/* Product Select Option = END */

/* Product Linked Size Options = START */
#product .product_options .form-group:has(.viewO_link),
#product .product_options .form-group.product-linked-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
}

#product .product_options .form-group:has(.viewO_link) > div:first-child,
#product .product_options .form-group.product-linked-options > div:first-child {
  flex: 0 0 100%;
  margin: 0 0 4px;
  padding: 0;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
}

#product .product_options .form-group:has(.viewO_link) > div:not(:first-child),
#product .product_options .form-group.product-linked-options > div:not(:first-child) {
  margin: 0;
  padding: 0;
}

#product .product_options .form-group:has(.viewO_link) label,
#product .product_options .form-group.product-linked-options label {
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  font-weight: 400;
  text-align: left;
}

#product .product_options .form-group:has(.viewO_link) label > div,
#product .product_options .form-group.product-linked-options label > div {
  display: block;
}

#product .product_options .viewO_link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #f4f4f4;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

#product .product_options .viewO_link:hover,
#product .product_options .viewO_link:focus {
  background: #fff;
  border-color: #3a3227;
  color: #3a3227;
  text-decoration: none;
}

#product .product_options .viewO_link.is-current {
  background: #3a3227;
  border-color: #3a3227;
  color: #fff;
  box-shadow: 0 8px 18px rgba(58, 50, 39, 0.16);
}

@media (max-width: 767px) {
  #product .product_options .form-group:has(.viewO_link),
  #product .product_options .form-group.product-linked-options {
    gap: 6px;
    margin-bottom: 22px;
  }

  #product .product_options .form-group:has(.viewO_link) > div:not(:first-child),
  #product .product_options .form-group.product-linked-options > div:not(:first-child) {
    flex: 1 1 calc(50% - 6px);
  }

  #product .product_options .viewO_link {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 9px 8px;
    font-size: 13px;
  }
}

/* Product Linked Size Options = END */

/* .main-slide більше не sticky: раніше колонка з фото "прилипала" під хедером і
   скролилась незалежно від .data-product, але тепер у ній же лежить весь panel-group
   (Опис/Характеристики/Розмір), тож колонка стала високою — sticky+власний скрол
   у обмеженій max-height більше не має сенсу, скролиться разом зі сторінкою як завжди. */
/* Product Page = END */

/* Tabs Style = START (перенесено з main.css — використовується тільки на сторінці товару) */
.product-tabs__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.product-tabs__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0 0 15px;
  cursor: pointer;
  font: inherit;
  opacity: 0.7;
  position: relative;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  transition: opacity 0.25s ease;
}

.product-tabs__tab.is-active {
  opacity: 1;
  font-weight: 600;
}

.product-tabs__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: currentColor;
}

.product-tabs__panels {
  position: relative;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
  animation: fadeInProductTabs 0.35s ease;
}

@keyframes fadeInProductTabs {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tabs Style = END */
