/* UK call modal v2 - cache bust 2026-09-22 */
#callModal.call-modal-uk .modal-dialog {
    max-width: 1080px;
    margin: 1rem auto;
}

#callModal.call-modal-uk .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(87, 28, 65, 0.2);
}

#callModal.call-modal-uk .modal-body {
    padding: 0;
}

.call-modal-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #571c41;
    max-height: calc(100vh - 1rem);
    overflow: auto;
}

.call-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #e8467c;
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(232, 70, 124, 0.35);
}

.call-modal-close:hover,
.call-modal-close:focus {
    color: #fff;
    background: #d13b6e;
    text-decoration: none;
}

.call-modal-main {
    padding: 24px 18px 20px;
}

.call-modal-reader {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
    padding-right: 36px;
}

.call-modal-reader[hidden] {
    display: none !important;
}

.call-modal-reader__photo-wrap {
    position: relative;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
}

.call-modal-reader__photo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ddd;
    background: #f4f4f4;
}

.call-modal-reader__photo-wrap.is-available .call-modal-reader__photo {
    border-color: #0ebd71;
}

.call-modal-reader__photo-wrap.is-busy .call-modal-reader__photo {
    border-color: #571c41;
}

.call-modal-reader__photo-wrap::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid #fff;
}

.call-modal-reader__photo-wrap.is-available::after {
    background: #0ebd71;
}

.call-modal-reader__photo-wrap.is-busy::after {
    background: #571c41;
}

.call-modal-reader__title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: #571c41;
    line-height: 1.15;
}

.call-modal-reader__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.call-modal-reader__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
}

.call-modal-reader__status.is-available {
    color: #0ebd71;
}

.call-modal-reader__status.is-available::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ebd71;
}

.call-modal-reader__status.is-busy {
    color: #571c41;
}

.call-modal-reader__id {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #6b5a66;
}

.call-modal-reader__dot {
    color: #c9b7c1;
}

.call-modal-reader__tagline {
    margin: 4px 0 0;
    font-size: 0.82rem;
    color: #8a7380;
}

.call-modal-howto {
    background: #fdeef4;
    border-radius: 18px;
    padding: 16px 14px 14px;
    text-align: center;
    margin-bottom: 16px;
}

.call-modal-howto__kicker {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #571c41;
}

.call-modal-sparkle {
    color: #e8467c;
    margin-right: 4px;
}

.call-modal-howto__intro {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: #6b5a66;
    line-height: 1.4;
}

.call-modal-steps {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.call-modal-steps li {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.call-modal-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: #f4c5d6;
}

.call-modal-steps__icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #e8467c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(232, 70, 124, 0.12);
}

.call-modal-steps__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.call-modal-steps__num {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e8467c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.call-modal-steps__label {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    line-height: 1.25;
    color: #571c41;
    font-weight: 600;
    text-align: center;
}

.call-modal-heading {
    display: none;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 8px 0 14px;
    color: #571c41;
}

.call-modal-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-option {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border: 1px solid #f3d6e3;
    border-radius: 16px;
    padding: 12px;
    background: #fff;
}

.call-option__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.call-option__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fdeef4;
    color: #e8467c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-option__icon svg,
.call-option__icon img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.call-option__body {
    flex: 1 1 auto;
    min-width: 0;
}

.call-option__title {
    margin: 0 0 2px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #571c41;
}

.call-option__badge {
    display: none;
    margin-left: 6px;
    background: #e8467c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 8px;
    vertical-align: middle;
}

.call-option__lead {
    display: none;
    margin: 0;
    font-size: 0.8rem;
    color: #6b5a66;
}

.call-option__lead--mobile {
    display: block;
}

.call-option__ticks {
    display: none;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.call-option__ticks li {
    position: relative;
    padding-left: 18px;
    margin: 0 0 4px;
    font-size: 0.8rem;
    color: #6b5a66;
}

.call-option__ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8467c;
    font-weight: 700;
}

.call-option__action {
    width: 100%;
}

.call-option__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #e8467c;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.15;
    text-align: center;
    width: 100%;
    min-width: 0;
    box-shadow: 0 6px 14px rgba(232, 70, 124, 0.25);
}

.call-option__cta .icon {
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.call-option__cta .icon:before {
    margin: 0;
    width: auto;
}

.call-option__cta:hover {
    background: #d13b6e;
    color: #fff;
}

.call-option__price {
    display: none;
    margin: 6px 0 0;
    font-size: 0.72rem;
    color: #8a7380;
    text-align: center;
}

.call-option__terms {
    display: block;
    margin: 2px 0 0;
    font-size: 0.72rem;
    color: #6b5a66;
    line-height: 1.35;
    text-align: left;
}

.call-option__action .call-option__terms {
    margin: 8px 0 0;
    text-align: center;
}

.call-modal-legal {
    margin: 12px 0 0;
    font-size: 0.68rem;
    color: #8a7380;
    line-height: 1.4;
}

.call-modal-legal a {
    color: #e8467c;
    font-weight: 600;
}

.call-modal-secure {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 4px 4px 8px;
    color: #571c41;
}

.call-modal-secure__icon {
    color: #e8467c;
    flex: 0 0 auto;
    margin-top: 2px;
}

.call-modal-secure__title {
    margin: 0;
    font-weight: 700;
    font-size: 0.92rem;
}

.call-modal-secure__copy {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: #6b5a66;
    line-height: 1.35;
}

.call-modal-v2:not(.is-reader) .js-call-with-name {
    display: none;
}

/* UK premium rate sits under Pay via mobile on small screens. */
@media (max-width: 991.98px) {
    .call-modal-v2.is-uk .call-option--card { order: 1; }
    .call-modal-v2.is-uk .call-option--mobile { order: 2; }
    .call-option--prn { display: none !important; }
}

@media (min-width: 992px) {
    #callModal.call-modal-uk .modal-dialog {
        max-width: 1040px;
        margin: 1.5rem auto;
    }

    .call-modal-v2 {
        flex-direction: row;
        align-items: stretch;
        min-height: 640px;
        max-height: none;
        overflow: visible;
    }

    .call-modal-close {
        top: 12px;
        right: 14px;
        background: transparent;
        color: #571c41;
        box-shadow: none;
        font-size: 28px;
        line-height: 28px;
        width: 32px;
        height: 32px;
    }

    .call-modal-close:hover,
    .call-modal-close:focus {
        background: transparent;
        color: #e8467c;
    }

    .call-modal-main {
        flex: 1 1 60%;
        padding: 18px 20px 16px 22px;
        max-width: 64%;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .call-modal-reader {
        padding-right: 0;
        margin-bottom: 10px;
        gap: 12px;
    }

    .call-modal-reader__photo-wrap,
    .call-modal-reader__photo {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .call-modal-reader__title {
        font-size: 1.25rem;
    }

    .call-modal-reader__id,
    .call-modal-reader__tagline {
        font-size: 0.75rem;
    }

    .call-modal-howto {
        text-align: left;
        padding: 12px 14px 10px;
        margin-bottom: 12px;
    }

    .call-modal-howto__kicker {
        font-size: 0.92rem;
        margin-bottom: 4px;
    }

    .call-modal-howto__intro {
        font-size: 0.72rem;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .call-modal-steps {
        justify-content: flex-start;
        gap: 6px;
        max-width: 460px;
    }

    .call-modal-steps li {
        flex: 0 0 33.33%;
    }

    .call-modal-steps li:not(:last-child)::after {
        top: 19px;
    }

    .call-modal-steps__label {
        font-size: 0.68rem;
    }

    .call-modal-heading {
        display: block;
        font-size: 0.95rem;
        margin: 4px 0 8px;
    }

    .call-modal-options {
        gap: 8px;
    }

    .call-modal-v2.is-uk .call-option--card { order: 1; }
    .call-modal-v2.is-uk .call-option--prn { order: 2; }
    .call-modal-v2.is-uk .call-option--mobile { order: 3; }

    .call-option {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
    }

    .call-option__row {
        flex: 1 1 0;
        min-width: 0;
        align-items: flex-start;
    }

    .call-option__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 10px;
    }

    .call-option__icon svg,
    .call-option__icon img {
        width: 18px;
        height: 18px;
        display: block;
        object-fit: contain;
    }

    .call-option__title {
        font-size: 0.88rem;
    }

    .call-option__badge {
        display: inline-block;
        font-size: 0.58rem;
        padding: 1px 6px;
    }

    .call-option__lead:not(.call-option__lead--mobile),
    .call-option__ticks,
    .call-option__price {
        display: block;
    }

    .call-option__lead--mobile {
        display: none;
    }

    .call-option__lead {
        font-size: 0.7rem;
    }

    .call-option__ticks {
        display: block;
        margin-top: 4px;
    }

    .call-option__ticks li {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .call-option__terms {
        display: block;
        font-size: 0.62rem;
        line-height: 1.3;
        color: #8a7380;
    }

    .call-option__body .call-option__terms {
        display: none;
    }

    .call-option > .call-option__terms {
        flex: 1 0 100%;
        width: 100%;
        margin: 4px 0 0;
        text-align: left;
    }

    .call-option__action .call-option__terms {
        margin-top: 6px;
        text-align: center;
    }

    .call-option__action {
        flex: 0 0 auto;
        width: auto;
        min-width: 168px;
        align-self: center;
        text-align: right;
    }

    .call-option__cta {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.78rem;
        justify-content: center;
    }

    .call-option__cta .icon {
        font-size: 0.9em;
    }

    .call-option__cta::after {
        content: ">";
        font-size: 1rem;
        line-height: 1;
        margin-left: 4px;
    }

    .call-option__price {
        font-size: 0.65rem;
        margin-top: 4px;
    }

    .call-modal-aside {
        flex: 1 1 36%;
        align-self: stretch;
        background: #fde8f0;
        padding: 28px 28px 20px;
        display: flex;
        flex-direction: column;
        text-align: left;
        overflow: hidden;
    }

    .call-modal-aside__art {
        text-align: center;
        margin: 4px 0 8px;
        flex: 0 0 auto;
    }

    .call-modal-aside__art img {
        max-width: 140px;
        height: auto;
    }

    .call-modal-aside__title {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 4px 0 8px;
        color: #571c41;
        flex: 0 0 auto;
    }

    .call-modal-aside__points {
        list-style: none;
        margin: 0;
        padding: 8px 0;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 12px;
        min-height: 0;
    }

    .call-modal-aside__points li {
        display: flex;
        gap: 12px;
        margin: 0;
        align-items: flex-start;
    }

    .call-modal-aside__points .call-modal-aside__icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        color: #e8467c;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        box-shadow: 0 2px 8px rgba(232, 70, 124, 0.12);
    }

    .call-modal-aside__points .call-modal-aside__icon svg {
        display: block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .call-modal-aside__pound {
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        color: #e8467c;
    }

    .call-modal-aside__points strong {
        display: block;
        font-size: 0.85rem;
        color: #571c41;
        margin-bottom: 2px;
    }

    .call-modal-aside__points li > div span {
        display: block;
        font-size: 0.72rem;
        color: #6b5a66;
        line-height: 1.35;
    }

    .call-modal-aside__signoff {
        margin-top: auto;
        padding-top: 16px;
        font-family: Georgia, "Palatino Linotype", Palatino, serif;
        font-style: italic;
        font-size: 1.3rem;
        color: #e8467c;
        text-align: center;
        flex: 0 0 auto;
    }

    .call-modal-aside__team {
        margin: 0;
        text-align: center;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-size: 0.6rem;
        font-weight: 700;
        color: #8a7380;
    }
}

@media (max-width: 575.98px) {
    #callModal.call-modal-uk .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .call-modal-reader__title {
        font-size: 1.25rem;
    }

    .call-option__cta {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        min-width: 86px;
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .call-option__cta .icon {
        font-size: 1.45rem;
    }
}
