.hero-section.cart {
    width: 100%;
    /* min-height: calc(100vh - 89px); */
    width: 100%;
    min-height: 250px;
    background-image: url('/public/static/img/project_mumie/cart/bg_cart.webp');
    /* background-attachment: fixed; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    filter: grayscale(85);
}

.hero-section.cart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 101, 101, 0.5);
}

.container-custom {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.main-content {
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Верхний блок: Строго на флексах (Инфо слева, форма справа) */
.contact-top-layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.contact-heading {
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.contact-description {
    font-size: 14px;
    color: #777777;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ==========================================================================
   2. ЛЕВАЯ КОЛОНКА: КОНТАКТЫ И ИНФОРМАЦИЯ
   ========================================================================== */
.contact-info-col {
    width: 50%;
    box-sizing: border-box;
    margin: 0 auto;
}


.info-flex-row {
    display: flex;
    justify-content: space-between;
}

.info-block {
    width: 47%;
    box-sizing: border-box;
}

.info-subtitle {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.info-icon {
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    padding-top: 4px;
}

.info-text {
    flex: 1;
}

.info-text strong {
    color: #333333;
    font-weight: 500;
}


/* ==========================================================================
   4. КНОПКА ОТПРАВКИ И НИЖНЯЯ СЕТКА МАГАЗИНОВ
   ========================================================================== */

.btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover .btn-arrow {
    transform: translateX(4px);
}

/* Секция магазинов */
.contact-bottom-stores {
    border-top: 1px solid #ebebeb;
    padding-top: 60px;
    margin-top: 40px;
}

.stores-main-title {
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Флекс-контейнер для магазинов */
.stores-flex-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Карточка магазина */
.store-card {
    width: 48%;
    /* Два магазина в один ряд с зазором */
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}

.store-image {
    width: 42%;
    flex-shrink: 0;
    /* Запрещаем картинке сжиматься */
}

.store-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.store-details {
    flex: 1;
    padding-left: 25px;
    box-sizing: border-box;
}

.store-name {
    font-size: 18px;
    color: #333333;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.store-address {
    font-size: 14px;
    color: #777777;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.store-meta-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mini-icon {
    margin-right: 8px;
    display: inline-flex;
}

.store-phone {
    font-size: 14px;
    color: #666666;
}

.store-hours-block {
    margin-top: 10px;
}

.hours-title {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.hours-text {
    font-size: 13px;
    color: #999999;
    margin: 0 0 3px 0;
}

/* ==========================================================================
   5. ДЕТАЛЬНАЯ МОБИЛЬНАЯ АДАПТИВНОСТЬ (ФЛЕКС-УПРАВЛЕНИЕ)
   ========================================================================== */
@media (max-width: 992px) {
    .contact-info-col {
            width: 100%;
           
        }
    .store-card {
        flex-direction: column;
    }
}

@media (max-width: 792px) {
    .stores-flex-container {
        flex-direction: column;
    }

    .store-card {
        flex-wrap: wrap;
    }
}

