/* Страница онлайн-камер */

body {
    margin: 0;
    background: #F5F5F5;
    font-family: 'Roboto', Arial, sans-serif;
}

.cameras-main {
    background: #F5F5F5;
}

.cameras-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Хлебные крошки */
.cameras-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0 30px;
    gap: 0;
}

.cameras-breadcrumbs a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #767676;
    text-decoration: none;
    transition: color 0.2s;
}

.cameras-breadcrumbs a:hover {
    color: #48924E;
}

.cameras-breadcrumbs-sep {
    font-size: 16px;
    line-height: 16px;
    color: #767676;
    margin: 0 8px;
}

.cameras-breadcrumbs-current {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

/* РЯД 1: две карточки сверху */
.cameras-row-top {
    display: flex;
    gap: 12px;
    margin-bottom: 64px; /* увеличен отступ между рядами */
    align-items: stretch;
}

/* Левая карточка (инфо) */
.cameras-info-card {
    flex: 1 0 0;
    min-height: 297px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Блок с картинками дома+камеры (ПК) */
.cameras-info-images {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    align-self: stretch;
}

.cameras-house-img {
    position: absolute;
    bottom: -18px;
    left: -61px;
    width: 354px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.cameras-device-img {
    position: absolute;
    top: 3px;
    left: 190px;
    width: 137px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

/* Мобильные картинки */
.cameras-info-images-mobile {
    display: none;
}

.cameras-house-img-mobile {
    display: block;
    width: 100%;
    height: auto;
}

/* Текстовый блок */
.cameras-info-text {
    flex: 1;
    padding: 28px 28px 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}

.cameras-info-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.cameras-info-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.cameras-info-desc strong {
    font-weight: 700;
}

/* Правая карточка (экскурсия) */
.cameras-excursion-card {
    aspect-ratio: 454 / 297;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    min-height: 297px;
}

.cameras-excursion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.cameras-excursion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 0 22px 10px;
    gap: 26px;
}

.cameras-excursion-btn {
    flex-shrink: 0;
    width: 192px;
    height: 38px;
    border-radius: 6px;
    border: none;
    background: #FF9C00;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.45) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.2) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
}

.cameras-excursion-card:hover .cameras-excursion-btn {
    background: #FFB033;
}

.cameras-excursion-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}


/* Все три карточки одинаковой высоты через aspect-ratio контейнера */
.cameras-green-card,
.cameras-stream-card,
.cameras-price-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 385 / 337;
}

.cameras-stream-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Зелёная карточка */
.cameras-green-card {
    background: #2A8552;
    position: relative;
    align-items: center;
    justify-content: center;
}

/* Световое пятно */
.cameras-green-glow {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: #6DC874;
    filter: blur(68px);
    pointer-events: none;
    z-index: 0;
}

/* Рамка */
.cameras-green-frame {
    position: relative;
    z-index: 2;
    height: calc(100% - 52px);
    width: calc(100% - 52px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    box-sizing: border-box;
}

/* Угловые изгибы — одна картинка, зеркалим CSS */
.cameras-corner {
    position: absolute;
    width: 38px;
    height: 46px;
    object-fit: contain;
    pointer-events: none;
}

.cameras-corner--tl {
    top: -1px;
    left: -1px;
    transform: scaleX(-1);
}

.cameras-corner--tr {
    top: -1px;
    right: -1px;
}

.cameras-corner--bl {
    bottom: -1px;
    left: -1px;
    transform: scale(-1, -1);
}

.cameras-corner--br {
    bottom: -1px;
    right: -1px;
    transform: scaleY(-1);
}

.cameras-green-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #EDF8EE;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Камера снизу справа */
.cameras-green-cam {
    position: absolute;
    bottom: -45px;
    right: -10px;
    width: 42%;
    height: auto;
    max-width: 160px;
    object-fit: contain;
    pointer-events: none;
    z-index: 3;
}

/* Средняя карточка (трансляция) */
.cameras-stream-card {
    background: #FFFFFF;
}

.cameras-stream-preview {
    flex: 1;
    background: #323C4C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    aspect-ratio: 335 / 269;
    width: 100%;
}

.cameras-stream-preview > div {
    height: 100%;
}

.cameras-stream-preview > div > div {
    height: 100%;
}

.cameras-stream-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cameras-stream-footer {
    padding: 12px 16px;
    flex-shrink: 0;
}

.cameras-stream-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

/* Правая карточка (цена) */
.cameras-price-card {
    background: #FFFFFF;
}

.cameras-price-preview {
    flex: 1;
    background: #ffffff;
    min-height: 0;
}

.cameras-price-footer {
    padding: 12px 16px;
    flex-shrink: 0;
}

.cameras-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 6px;
    border: none;
    background: #48924E;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
}

.cameras-price-btn:hover {
    background: #5aaa62;
}

/* АДАПТИВ — широкий диапазон (1025–1150px) */
@media (max-width: 1150px) and (min-width: 1025px) {
    .cameras-info-card {
        flex: 0 0 580px;
        max-width: 580px;
        min-height: unset;
        height: 297px;
    }

    .cameras-excursion-label {
        font-size: 20px;
        line-height: 24px;
    }

    .cameras-excursion-btn {
        width: 165px;
        font-size: 15px;
    }

    .cameras-excursion-overlay {
        gap: calc(52px - 22px);
        padding: 0 16px 16px;
    }

    .cameras-info-images {
        display: none;
    }
}

/* АДАПТИВ — ПЛАНШЕТ (max 1024px) */
@media (max-width: 1024px) {

    /* Левая карточка: убираем картинки дома/камеры */
    .cameras-info-card {
        flex: 1;
        max-width: none;
    }

    .cameras-info-images {
        display: none;
    }

    .cameras-info-text {
        padding: 28px 32px;
    }

    /* Правая карточка — чуть меньше */
    .cameras-excursion-card {
        /*flex: 0 0 44%;*/
    }

    .cameras-excursion-label {
        font-size: 20px;
        line-height: 24px;
    }

    .cameras-excursion-btn {
        width: 160px;
        font-size: 16px;
    }

    .cameras-info-title {
        font-size: 20px;
        line-height: 26px;
    }
}

/* АДАПТИВ — ПЛАНШЕТ средний (max 860px) */
@media (max-width: 860px) {
    .cameras-excursion-label {
        font-size: 17px;
        line-height: 21px;
    }

    .cameras-excursion-btn {
        width: 140px;
        height: 34px;
        font-size: 14px;
    }

    .cameras-excursion-overlay {
        gap: 12px;
        padding: 0 16px 16px;
    }
}

/* АДАПТИВ — ПЛАНШЕТ маленький (max 768px) */
@media (max-width: 768px) {
    .cameras-container {
        padding: 0 16px 40px;
    }

    .cameras-breadcrumbs {
        padding: 16px 0;
    }

    .cameras-breadcrumbs a,
    .cameras-breadcrumbs-sep,
    .cameras-breadcrumbs-current {
        font-size: 14px;
        line-height: 14px;
    }

    /* Ряд 1: вертикально */
    .cameras-row-top {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 34px;
    }

    /* Левая карточка — вертикальная */
    .cameras-info-card {
        flex-direction: column;
        max-width: none;
        min-height: auto;
        overflow: hidden;
        align-items: flex-start;
    }

    /* На мобилке: текст сверху */
    .cameras-info-text {
        order: 1;
        padding: 20px 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Мобильная картинка дома — снизу, без отдельной камеры */
    .cameras-info-images-mobile {
        display: block;
        order: 2;
        width: 100%;
        position: relative;
        flex-shrink: 0;
    }

    /* ПК картинки — скрываем */
    .cameras-info-images {
        display: none;
    }

    /* Правая карточка (экскурсия) — скрываем */
    .cameras-excursion-card {
        display: none;
    }

    /* Основной layout: вертикально на мобилке */
    .cameras-main-layout {
        flex-direction: column;
    }


    /* Убираем квадратное соотношение на мобилке */
    .cameras-stream-card,
    .cameras-price-card {
        aspect-ratio: unset;
    }

    .cameras-stream-preview {
        min-height: 300px;
    }

    .cameras-price-preview {
        min-height: 300px;
    }

    .cameras-stream-title {
        font-size: 15px;
    }
}

/* АДАПТИВ — МОБИЛКА маленькая (max 480px) */
@media (max-width: 480px) {
    .cameras-breadcrumbs a,
    .cameras-breadcrumbs-sep,
    .cameras-breadcrumbs-current {
        font-size: 13px;
    }

    .cameras-info-title {
        font-size: 18px;
        line-height: 24px;
    }

    .cameras-info-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .cameras-info-images-mobile {
        height: auto;
    }

    .cameras-stream-preview,
    .cameras-price-preview {
        min-height: 250px;
    }

    .cameras-stream-title {
        font-size: 14px;
        line-height: 18px;
    }

    .cameras-price-btn {
        height: 44px;
        font-size: 15px;
    }
}

/* Основной двухколоночный layout */
.cameras-main-layout {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

/* Левая sticky колонка */
.cameras-sticky-col {
    flex: 0 0 calc(33.333% - 8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* Правая колонка */
.cameras-col-left {
    flex: 0 0 calc(33.333% - 8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}


/* Правые две колонки — 2/3 ширины */
.cameras-col-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Верхняя пара в правой части */
.cameras-right-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Карточка экскурсия на стройку */
.cameras-excursion2-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 293px;
    aspect-ratio: 385 / 293;
}

.cameras-excursion2-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cameras-excursion2-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    flex: 1;
}

.cameras-excursion2-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 24.2px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 4px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.cameras-excursion2-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 13px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 16px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cameras-excursion2-btn {
    width: 100%;
    max-width: 333px;
    height: 52px;
    border-radius: 6px;
    border: none;
    background: #FF9C00;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
}

.cameras-excursion2-btn:hover {
    background: #FFB033;
}

/* Картинки в превью */
.cameras-price-preview--img {
    position: relative;
    overflow: hidden;
}

.cameras-price-preview--img.static {
    aspect-ratio: 335 / 269;
    width: 100%;
    flex: unset;
}

.cameras-price-footer--double-static {
    flex: 1;
    padding: 12px 16px;
}

.cameras-price-footer--double-static > p {

}

.cameras-price-preview--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cameras-price-preview--img > picture {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.cameras-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Двойные кнопки */
.cameras-price-footer--double {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.cameras-btn-orange {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 6px;
    border: none;
    background: #FF9C00;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
}

.cameras-btn-orange:hover {
    background: #FFB033;
}

.cameras-price-footer--double .cameras-price-btn {
    flex: 1;
    white-space: nowrap;
}

/* ЗЕЛЁНАЯ ФОРМА */
.cameras-form-block {
    display: flex;
    align-items: center;
    gap: 0;
    background: #48924E;
    border-radius: 20px;
    overflow: hidden;
    min-height: 437px;
    position: relative;
}

/* Левая часть */
.cameras-form-left {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    box-sizing: border-box;
}

.cameras-form-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 210px;
}


.cameras-form-photo {
    width: 400px;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: -45px;
}

/* Две версии фото */
.cameras-form-photo--desktop {
    display: block;
}

.cameras-form-photo--mobile {
    display: none;
}

.cameras-form-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
    margin-top: 50px;
    text-align: center;
    z-index: 1;
}

.cameras-form-role {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    opacity: 0.85;
}

/* Правая часть */
.cameras-form-right {
    flex: 1;
    padding: 36px 36px 36px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.cameras-form-right .cameras-form-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.cameras-form-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
    max-width: 365px;
}

.cameras-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cameras-form-phone {
    width: 332px;
    max-width: 100%;
    height: 50px;
    border-radius: 6px;
    border: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #FFFFFF inset,
    0px -4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    padding: 0 16px;
    box-sizing: border-box;
    outline: none;
}

.cameras-form-phone::placeholder {
    color: #AAAAAA;
}

.cameras-form-submit {
    width: 332px;
    max-width: 100%;
    height: 50px;
    border-radius: 6px;
    border: none;
    background: #FF9C00;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
}

.cameras-form-submit:hover {
    background: #FFB033;
}

.cameras-form-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cameras-form-checkbox {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    accent-color: #FF9C00;
    cursor: pointer;
}

.cameras-form-agree span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #D1E2D5;
}

.cameras-form-agree a {
    color: #D1E2D5;
    text-decoration: underline;
}

/* ПАРЫ КАРТОЧЕК (повторяющиеся) */
.cameras-pairs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cameras-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* АДАПТИВ — 1025–1060px */
@media (max-width: 1150px) and (min-width: 1025px) {
    .cameras-form-right {
        padding: 28px 20px 28px 16px;
    }

    .cameras-form-text {
        max-width: 100%;
    }

    .cameras-form-phone,
    .cameras-form-submit {
        width: 100%;
    }
}

/* АДАПТИВ — ПЛАНШЕТ (max 1024px) */
@media (max-width: 1024px) {

    /* Скрываем левую sticky колонку */
    .cameras-sticky-col {
        display: none;
    }

    /* Правая колонка — на всю ширину */
    .cameras-col-right {
        flex: 1;
    }

    /* Форма компактнее */
    .cameras-form-left {
        flex: 0 0 240px;
        padding: 24px 12px;
    }

    .cameras-form-photo {
        width: 260px;
    }

    .cameras-form-right {
        padding: 28px 24px 28px 16px;
    }

    .cameras-form-text {
        font-size: 17px;
    }

    .cameras-form-phone,
    .cameras-form-submit {
        width: 70%;
    }

    .cameras-form-block {
        min-height: auto;
    }

    .cameras-form-name {
        margin-top: -45px;
    }

    .cameras-form-photo {
        position: unset;
    }

    .cameras-form-person {
        margin-top: unset;
    }
}

/* АДАПТИВ — МОБИЛКА (max 768px) */
@media (max-width: 768px) {

    /* Левая sticky колонка скрыта */
    .cameras-sticky-col {
        display: none;
    }

    .cameras-house-img-mobile {
        margin-top: -70px;
    }

    /* Правая на всю ширину */
    .cameras-right-pair {
        grid-template-columns: 1fr;
    }

    /* Форма вертикально */
    .cameras-form-block {
        flex-direction: column;
        min-height: auto;
        border-radius: 16px;
    }

    .cameras-form-name {
        margin-top: -75px;
    }

    .cameras-form-left {
        flex: none;
        width: 100%;
        height: 292px;
        overflow: hidden;
        padding: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cameras-form-person {
        position: absolute;
        top: -20px;
        gap: 0;
    }

    .cameras-form-name,
    .cameras-form-role {
        /*display: none;*/
    }

    /* Мобильное фото девушки */
    .cameras-form-photo--desktop {
        display: none;
    }

    .cameras-form-photo--mobile {
        display: block;
        width: 345px;
        height: auto;
    }

    .cameras-form-right {
        width: 100%;
        padding: 20px 20px 28px;
        box-sizing: border-box;
    }

    .cameras-form-text {
        font-size: 16px;
    }

    .cameras-form-phone,
    .cameras-form-submit {
        width: 100%;
    }

    /* Пары карточек */
    .cameras-pair {
        grid-template-columns: 1fr;
    }

    /* Двойные кнопки */
    .cameras-price-footer--double {
        flex-direction: row;
        gap: 8px;
    }

    .cameras-btn-orange,
    .cameras-price-footer--double .cameras-price-btn {
        font-size: 14px;
        padding: 0 8px;
    }
}

/* АДАПТИВ — МОБИЛКА маленькая (max 480px) */
@media (max-width: 480px) {

    .cameras-form-left {
        /*height: 220px;*/
    }

    .cameras-form-photo--mobile {
        /*width: 340px;*/
    }

    .cameras-form-name {
        font-size: 17px;
    }

    .cameras-form-role {
        font-size: 14px;
    }

    .cameras-form-text {
        font-size: 15px;
    }

    .cameras-form-submit {
        font-size: 14px;
        height: 46px;
    }

    .cameras-btn-orange,
    .cameras-price-footer--double .cameras-price-btn {
        font-size: 13px;
        height: 38px;
    }
}
