.ext-promo .contact-form__form-checkbox,
.ext-promo .form-note {
    font-size: 8px !important;
    line-height: 10px !important;
}

.ext-promo .form-floating textarea.form-control {
    min-height: 100px;
}

.ext-promo .form-control {
    font-size: 1.25rem;
}

/* Общие стили */
.form-promo-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-inline {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    position: relative;
    gap: 12px;
}

.promo-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.promo-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.promo-inline__image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    cursor: default;
}

.promo-inline__text {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.promo-inline__checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.2;
}

.promo-inline__checkbox input[type="checkbox"] {
    transform: scale(1.5);
    margin-bottom: 5px;
    margin-right: 10px;
}

/* Всплывающее изображение */
.promo-hover-full {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    position: absolute;
    top: -10px;
    left: calc(100% + 10px);
    z-index: 999;
    background-color: #fff;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    max-height: 300px;
    overflow: hidden;
}

.promo-hover-full img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-image-wrapper:hover .promo-hover-full {
    opacity: 1;
    pointer-events: auto;
    width: 350px;
}

/* 🔻 Мобильная адаптация */
@media (min-width: 768px) {
    .promo-inline {
        flex-direction: row;
        align-items: center;
    }

    .promo-top-row {
        flex-direction: row;
        align-items: center;
        flex-grow: 1;
    }

    .promo-inline__checkbox {
        align-items: center;
        flex-direction: row;
        white-space: nowrap;
        margin-left: 12px;
    }


}

@media (max-width: 767px) {
    .promo-inline__checkbox {
        align-items: center;
        flex-direction: row;
        white-space: nowrap;
        margin-left: 12px;
    }



}