/* ==========================================================================
   "Нужна помощь с выбором?" — ссылка с выбором между консультацией
   и выездом на замер. Отдельный файл, подключается в functions.php
   рядом со stock-tooltip.css.
   ========================================================================== */

.expert-help-wrap {
    position: relative;
    margin: 4px 0 18px;
}

.expert-help-trigger {
    cursor: pointer;
    color: #4d63aa;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.expert-help-trigger:hover {
    color: #37497f;
}

.expert-help-backdrop {
    display: none;
}

.expert-help-popup {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    z-index: 1000;
}

.expert-help-popup[hidden] {
    display: none;
}

.expert-help-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    z-index: 1;
}

.expert-help-close:hover {
    color: #333;
}

.expert-help-option {
    all: unset;
    box-sizing: border-box;
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 40px 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.expert-help-option:last-child {
    border-bottom: none;
    padding-bottom: 16px;
}

.expert-help-option:hover {
    background: #f7f9fc;
}

.expert-help-option-title {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.expert-help-option-desc {
    display: block;
    font-size: 12.5px;
    line-height: 1.45;
    color: #666;
}

/* Текст-пояснение внутри уже открытой формы (fancybox) */
.expert-help-form-intro {
    margin-bottom: 18px;
}

.expert-help-form-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: #4d63aa;
    text-align: center;
    line-height: 1.35;
}

.expert-help-form-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: center;
}

/* ==========================================================================
   Мобильная версия — тот же приём, что и у "Почему 35 дней":
   шторка снизу экрана с затемнением
   ========================================================================== */
@media screen and (max-width: 768px) {

    .expert-help-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 9998;
    }

    .expert-help-backdrop[hidden] {
        display: none;
    }

    .expert-help-popup {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        margin-top: 0;
        width: 100%;
        max-width: none;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
        z-index: 9999;
        max-height: 70vh;
        overflow-y: auto;
    }

    .expert-help-close {
        top: 10px;
        right: 12px;
        width: 32px;
        height: 32px;
        background: #f2f2f2;
        border-radius: 50%;
    }
}
