/* Стили для страницы Новые АКБ */
.batteries-page {
    position: relative;
    width: 100%;
    min-height: 850px;
    background: #FFFFFF;
    overflow: hidden;
}

.batteries-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('../img/image7.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.batteries-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    width: 100%;
}

.batteries-main-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 47px;
    color: #000000;
    width: 800px;
    margin-bottom: 24px;
}

.batteries-description {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    width: 651px;
    margin-bottom: 24px;
}

/* Текст о интернет-магазине (над кнопкой) */
.batteries-shop-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    width: 409px;
    margin-bottom: 24px;
}

/* Кнопка заказа */
.order-button-container {
    margin-bottom: 32px;
}

.order-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 247px;
    height: 40px;
    background: linear-gradient(90deg, #809C53 0%, #71A9BB 100%);
    box-shadow: 6px 9px 20px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.order-button:hover {
    transform: translateY(-2px);
}

.order-button span {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}

/* Текст о сервисах подбора (под кнопкой, над логотипами) */
.batteries-service-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    width: 603px;
    margin-bottom: 24px;
}

/* Секция с логотипами партнеров */
.partners-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 36px;
}

/* Прямоугольные логотипы */
.rectangular-logos {
    flex-shrink: 0;
}

.logos-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-row {
    display: flex;
    gap: 40px;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo.rectangular {
    width: 120px;
    height: 60px;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Круглый логотип */
.circular-logo-container {
    flex-shrink: 0;
}

.partner-logo.circular {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Текст о замене аккумулятора (под логотипами) */
.batteries-replacement-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    width: 984px;
    margin-bottom: 0;
}

