/* начало стили для блока склада */
.contacts-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.contacts-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
}

.contacts-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-section h3 {
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.contact-section p {
    margin: 8px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #666;
}

.contact-section strong {
    color: #333;
}

.map-container {
    flex: 1;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    border: none;
}

/* Мобильная версия */
@media (max-width: 768px) {
.contacts-wrapper {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
}

.contacts-info {
    width: 100%;
}

.map-container {
    width: 100%;
    min-height: 400px;
}

.contact-section p {
    font-size: 14px;
}
    }
/* конец стили для блока склада */


/* начало порядок для фильтров разделов в каталоге товаров */
/* включаем flex, чтобы order работал */
.t-store__filter__item-title[data-filter-name="storepartuid"]
  + .t-store__filter__item-controls-wrap
  .t-store__filter__item-controls-container {
    display: flex;
    flex-direction: column;
}

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Термопанели с клинкерной плиткой"]) { order: 1; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Термопанели с декоративным камнем"]) { order: 2; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Термопанели из мраморной крошки"]) { order: 3; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Декоративный камень"]) { order: 4; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Клинкерная плитка"]) { order: 5; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Фасадный декор"]) { order: 6; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Сопутствующие товары"]) { order: 7; }

.t-store__filter__item-title[data-filter-name="storepartuid"] 
  + .t-store__filter__item-controls-wrap
  label:has([data-filter-value="Выставочное оборудование"]) { order: 8; }
/* конец порядок для фильтров разделов в каталоге товаров */

/* начало отступы в строках фильтра у последних элементов */
body .t-store__filter__item .t-checkbox__control:last-child {
    margin-bottom: 0px;
}
/* конец отступы в строках фильтра у последних элементов */

/* начало для iphone fix отображение каталога */
@media screen and (max-width: 480px) {
    /* Первый селектор - для контейнера с gap="10" */
    .t951 .t-store__grid-cont_mobile-one-row[data-col-gap="10"] {
        max-width: none !important;
        width: auto !important;
    }
    
    /* Второй селектор - для items в контейнере с gap="20" */
    .t951 .t-store__grid-cont_mobile-one-row[data-col-gap="20"].t-store__mobile-two-columns .t-item {
        max-width: none !important;
        width: auto !important;
    }
}
/* конец для iphone fix отображение каталога */
