/* Стили для трехколоночной структуры продукта */
.product-info.has-extra-button {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Левая колонка - картинки (25%) */
.product-info.has-extra-button .product-left {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Центральная колонка - описание (50%) */
.product-info.has-extra-button .product-center {
  flex: 0 0 42%;
  max-width: 42%;
  padding: 0 15px;
}

.product-info.has-extra-button .product-center-wrapper {
  height: 100%;
}

.product-info.has-extra-button .product-center .description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.product-info.has-extra-button .product-center .description p{
    margin: 0!important;
    padding: 0!important;
    padding-bottom: 5px!important;
}
/* Правая колонка - детали продукта (25%) */
.product-info.has-extra-button .product-right {
  flex: 0 0 29%;
  max-width: 29%;
 
  background: transparent;
  position: sticky;
  top: 20px;
}

.product-info.has-extra-button .product-right-wrapper {
  position: relative;
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

/* Улучшенная видимость правой колонки */
.product-info.has-extra-button .product-right .product-details {
  background: transparent;
}

.product-info.has-extra-button .product-right .title.page-title {
  color: #007bff;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}
.product-info .product-right{
    background: #fff;
}

.product-info.has-extra-button .product-right .product-price-group {
  
  padding: 0px;
 
  margin-bottom: 15px;
 
}

.product-info.has-extra-button .product-right .button-group-page {
  
  padding: 0px;
  
  
}

/* Адаптивность для мобильных устройств */
@media (max-width: 991px) {
  .product-info.has-extra-button {
    flex-direction: column;
  }
  
  .product-info.has-extra-button .product-left,
  .product-info.has-extra-button .product-center,
  .product-info.has-extra-button .product-right {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
  }
  
  .product-info.has-extra-button .product-center {
    padding: 15px 0;
    order: 3;
  }
  
  .product-info.has-extra-button .product-right {
    order: 2;
  }
}
.product-info .product-left,
.product-info .product-right{
    min-width: auto!important;
}
html:not(.popup) .product-right-wrapper{
    top: 0!important;
}
.our_clients{
  text-align: center;
  background: transparent;
  margin-top: 30px;
}
.push-option > div[id*="input"] > div{
  width: 100%!important;
}

/* Стили для tooltip иконки */
.option-tooltip-icon {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  position: relative;
}

.option-tooltip-icon:hover {
  color: #007bff;
}

.option-tooltip-icon i {
  vertical-align: middle;
}

.option-tooltip-icon-select {
  display: none;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  pointer-events: none;
}

.option-tooltip-icon-select.has-tooltip {
  display: inline-block !important;
  pointer-events: auto;
}

.select-tooltip-wrapper {
  position: relative;
}

.select-tooltip-wrapper select {
  padding-right: 30px;
}

/* Tooltip bubble */
.option-tooltip-bubble {
  position: absolute;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  max-width: 250px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: none;
}

.option-tooltip-bubble.show {
  display: block;
}

.option-tooltip-bubble:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 5px solid transparent;
}

.option-tooltip-bubble.top:after {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #000;
}

.option-tooltip-bubble.bottom:after {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #000;
}

.option-tooltip-bubble.left:after {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #000;
}

.option-tooltip-bubble.right:after {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #000;
}