/* Fix для перекрытия блока цены с изображениями на странице товара */

/* Базовые стили для всех разрешений */
.detail_card_main_info .buy_info {
  clear: both;
  display: block;
  position: relative;
  margin-top: 30px;
}

/* Desktop: используем column layout */
@media (min-width: 1200px) {
  /* Родительский контейнер */
  .wrapper_detal_top_card {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }

  /* Галерея */
  .wrapper_detal_top_card .detail_card_main_info {
    flex: 0 0 73% !important;
    max-width: 73% !important;
    order: 1 !important;
  }

  /* Блок цены */
  .wrapper_detal_top_card .buy_info {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    margin: 0 0 0 2% !important;
    order: 2 !important;
    position: static !important;
  }
}
