.nccr-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 240, 184, 0.1), transparent 28%),
        rgba(5, 22, 26, 0.64);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(8px);
    transition: opacity 260ms ease;
}

.nccr-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nccr-overlay[hidden] {
    display: none;
}

.nccr-modal {
    position: relative;
    width: min(92vw, 440px);
    max-height: calc(100vh - 36px);
    overflow: hidden;
    padding: 30px 28px 24px;
    border: 1px solid rgba(255, 240, 184, 0.34);
    border-radius: var(--nccr-radius-lg, 8px);
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 240, 184, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(7, 63, 70, 0.98), rgba(5, 45, 50, 0.98));
    box-shadow: var(--nccr-shadow-lg, 0 28px 80px rgba(5, 22, 26, 0.36));
    color: #fff;
    font-family: var(--nccr-font, "Cairo", "Tahoma", "Arial", sans-serif);
    text-align: right;
    transform: translateY(22px) scale(0.95);
    transition: transform 360ms var(--nccr-ease, cubic-bezier(0.16, 1, 0.3, 1));
}

.nccr-overlay.is-visible .nccr-modal {
    transform: translateY(0) scale(1);
}

.nccr-content {
    position: relative;
    z-index: 1;
}

.nccr-modal.has-art {
    padding: 0;
}

.nccr-modal.has-art .nccr-content {
    padding: 24px 28px 24px;
}

.nccr-art {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(255, 240, 184, 0.08);
}

.nccr-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(5, 32, 37, 0.18));
    pointer-events: none;
}

.nccr-art img {
    display: block;
    width: 100%;
    height: 166px;
    object-fit: cover;
    transform: scale(1.02);
}

.nccr-modal.is-art-top .nccr-art {
    border-bottom: 1px solid rgba(255, 240, 184, 0.26);
}

.nccr-modal.is-art-side {
    width: min(94vw, 720px);
}

.nccr-modal.is-art-background {
    background:
        linear-gradient(145deg, rgba(5, 32, 37, 0.93), rgba(5, 32, 37, 0.84)),
        var(--nccr-popup-image) center / cover no-repeat;
}

.nccr-modal.is-art-background .nccr-content {
    padding: 32px 30px 26px;
}

.nccr-modal::before {
    content: "";
    position: absolute;
    inset: -45% -85%;
    background: linear-gradient(90deg, transparent 36%, rgba(255, 240, 184, 0.18) 50%, transparent 64%);
    transform: translateX(88%) rotate(14deg);
    animation: nccr-shine 4s ease-in-out 900ms infinite;
    pointer-events: none;
}

.nccr-modal::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--nccr-radius-lg, 8px) - 1px);
    pointer-events: none;
}

.nccr-close {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 240, 184, 0.42);
    border-radius: 50%;
    background: rgba(5, 32, 37, 0.78);
    color: var(--nccr-secondary-soft, #fff0b8);
    cursor: pointer;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nccr-close:hover {
    background: rgba(7, 63, 70, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 240, 184, 0.16);
    transform: rotate(90deg);
}

.nccr-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.nccr-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 5px 15px 6px;
    border: 1px solid rgba(255, 240, 184, 0.62);
    border-radius: 999px;
    color: var(--nccr-secondary-soft, #fff0b8);
    background: rgba(255, 240, 184, 0.1);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nccr-modal h2 {
    position: relative;
    z-index: 1;
    margin: 14px 0 8px;
    color: #fff;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
}

.nccr-body,
.nccr-footnote {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.86);
}

.nccr-body {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.nccr-form {
    position: relative;
    z-index: 1;
}

.nccr-label {
    display: block;
    margin-bottom: 7px;
    color: var(--nccr-secondary-soft, #fff0b8);
    font-size: 14px;
    font-weight: 900;
}

.nccr-form input[type="tel"] {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 240, 184, 0.42);
    border-radius: var(--nccr-radius-sm, 6px);
    background: rgba(255, 255, 255, 0.96);
    color: var(--nccr-ink, #172326);
    font-size: 16px;
    font-weight: 800;
    outline: none;
    direction: ltr;
    text-align: left;
    box-shadow: inset 0 1px 2px rgba(5, 22, 26, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nccr-form input[type="tel"]:focus {
    border-color: var(--nccr-secondary-soft, #fff0b8);
    box-shadow: 0 0 0 3px rgba(255, 240, 184, 0.22);
}

.nccr-phone-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 240, 184, 0.42);
    border-radius: var(--nccr-radius-sm, 6px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 2px rgba(5, 22, 26, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nccr-phone-field:focus-within {
    border-color: var(--nccr-secondary-soft, #fff0b8);
    box-shadow: 0 0 0 3px rgba(255, 240, 184, 0.22);
}

.nccr-phone-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 0 14px;
    border-right: 1px solid rgba(7, 63, 70, 0.14);
    background: linear-gradient(180deg, rgba(255, 240, 184, 0.64), rgba(240, 207, 114, 0.58));
    color: var(--nccr-primary-dark, #073f46);
    font-size: 16px;
    font-weight: 900;
}

.nccr-phone-field input[type="tel"] {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--nccr-primary-dark, #073f46) !important;
    -webkit-text-fill-color: var(--nccr-primary-dark, #073f46);
    caret-color: var(--nccr-primary-dark, #073f46);
    box-shadow: none;
}

.nccr-phone-field input[type="tel"]:focus {
    border-color: transparent;
    box-shadow: none;
}

.nccr-phone-field input[type="tel"]::placeholder {
    color: rgba(7, 63, 70, 0.36) !important;
    -webkit-text-fill-color: rgba(7, 63, 70, 0.36);
}

.nccr-phone-field input[type="tel"]:-webkit-autofill,
.nccr-phone-field input[type="tel"]:-webkit-autofill:hover,
.nccr-phone-field input[type="tel"]:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--nccr-primary-dark, #073f46);
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.96) inset;
}

.nccr-consent,
.nccr-push-optin {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 12px 0 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.nccr-push-optin {
    margin-top: -4px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 240, 184, 0.22);
    border-radius: var(--nccr-radius-sm, 6px);
    background: rgba(255, 240, 184, 0.08);
}

.nccr-consent input,
.nccr-push-optin input {
    flex: 0 0 auto;
    margin-top: 4px;
    accent-color: var(--nccr-secondary, #d0a24f);
}

.nccr-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    overflow: hidden;
    border: 0;
    border-radius: var(--nccr-radius-sm, 6px);
    background: linear-gradient(135deg, #b9812f 0%, #f0cf72 42%, #fff0b8 54%, #c3913d 100%);
    color: #2f2417;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.nccr-submit:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.nccr-submit:focus-visible {
    outline: none;
    box-shadow: var(--nccr-focus, 0 0 0 3px rgba(208, 162, 79, 0.28)), 0 16px 28px rgba(0, 0, 0, 0.26);
}

.nccr-submit[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.nccr-message {
    min-height: 22px;
    margin-top: 10px;
    color: var(--nccr-secondary-soft, #fff0b8);
    font-size: 13px;
    font-weight: 800;
}

.nccr-message.is-error {
    color: #ffd2d2;
}

.nccr-footnote {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.nccr-browse-reminder {
    position: fixed;
    z-index: 999998;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 48px 13px 16px;
    border: 1px solid rgba(255, 240, 184, 0.36);
    border-radius: var(--nccr-radius-md, 8px);
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 240, 184, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(7, 63, 70, 0.96), rgba(5, 45, 50, 0.96));
    box-shadow: 0 18px 45px rgba(5, 22, 26, 0.28);
    color: #fff;
    font-family: var(--nccr-font, "Cairo", "Tahoma", "Arial", sans-serif);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 240ms ease, transform 240ms ease;
}

.nccr-browse-reminder[hidden] {
    display: none;
}

.nccr-browse-reminder.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nccr-browse-reminder.is-floating {
    right: auto;
    left: 18px;
    width: min(92vw, 360px);
    flex-wrap: wrap;
}

.nccr-browse-copy {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.55;
}

.nccr-browse-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nccr-secondary-soft, #fff0b8);
    box-shadow: 0 0 0 5px rgba(255, 240, 184, 0.12);
}

.nccr-browse-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 18px 10px;
    border-radius: var(--nccr-radius-sm, 6px);
    background: linear-gradient(135deg, #b9812f 0%, #f0cf72 46%, #fff0b8 58%, #c3913d 100%);
    color: #2f2417 !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nccr-browse-cta:hover,
.nccr-browse-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 14px 24px rgba(0, 0, 0, 0.26);
}

.nccr-browse-close {
    position: absolute;
    top: 50%;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(255, 240, 184, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--nccr-secondary-soft, #fff0b8);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-50%);
}

.nccr-browse-close:hover,
.nccr-browse-close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    outline: none;
}

.nccr-campaign-overlay {
    position: fixed;
    inset: 0;
    z-index: 999997;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 240, 184, 0.14), transparent 30%),
        rgba(5, 22, 26, 0.52);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(7px);
    transition: opacity 260ms ease;
}

.nccr-campaign-overlay[hidden] {
    display: none;
}

.nccr-campaign-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nccr-campaign-modal {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    width: min(94vw, 760px);
    border: 1px solid rgba(255, 240, 184, 0.34);
    border-radius: var(--nccr-radius-lg, 8px);
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 240, 184, 0.2), transparent 32%),
        linear-gradient(140deg, rgba(7, 63, 70, 0.98), rgba(5, 45, 50, 0.98));
    box-shadow: 0 30px 90px rgba(5, 22, 26, 0.38);
    color: #fff;
    font-family: var(--nccr-font, "Cairo", "Tahoma", "Arial", sans-serif);
    text-align: right;
    transform: translateY(24px) scale(0.95);
    transition: transform 380ms var(--nccr-ease, cubic-bezier(0.16, 1, 0.3, 1));
}

.nccr-campaign-overlay.is-visible .nccr-campaign-modal {
    transform: translateY(0) scale(1);
}

.nccr-campaign-modal.is-text-only {
    display: block;
    width: min(92vw, 500px);
}

.nccr-campaign-modal::before {
    content: "";
    position: absolute;
    inset: -45% -80%;
    background: linear-gradient(90deg, transparent 34%, rgba(255, 240, 184, 0.16) 50%, transparent 66%);
    transform: translateX(86%) rotate(13deg);
    animation: nccr-shine 4.5s ease-in-out 850ms infinite;
    pointer-events: none;
}

.nccr-campaign-art {
    position: relative;
    min-height: 360px;
    background: rgba(255, 240, 184, 0.08);
}

.nccr-campaign-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 32, 37, 0.2), transparent 44%);
    pointer-events: none;
}

.nccr-campaign-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nccr-campaign-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: 34px 34px 30px;
}

.nccr-campaign-modal.is-text-only .nccr-campaign-content {
    min-height: auto;
    padding: 36px 34px 30px;
}

.nccr-campaign-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 30px;
    padding: 5px 14px 6px;
    border: 1px solid rgba(255, 240, 184, 0.58);
    border-radius: 999px;
    background: rgba(255, 240, 184, 0.11);
    color: var(--nccr-secondary-soft, #fff0b8);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nccr-campaign-content h2 {
    margin: 15px 0 10px;
    color: #fff;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.nccr-campaign-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

.nccr-campaign-cta {
    position: relative;
    order: 20;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: min(100%, 274px);
    min-height: 54px;
    margin-top: 12px;
    padding: 14px 28px 15px;
    overflow: hidden;
    border-radius: var(--nccr-radius-sm, 6px);
    background: linear-gradient(135deg, #b9812f 0%, #f0cf72 42%, #fff0b8 54%, #c3913d 100%);
    color: #2f2417 !important;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 240, 184, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.56);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nccr-campaign-cta::after {
    content: "";
    position: absolute;
    inset: -45% -70%;
    background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
    transform: translateX(95%) rotate(13deg);
    animation: nccr-campaign-cta-shine 2600ms ease-in-out 900ms infinite;
    pointer-events: none;
}

.nccr-campaign-modal.is-text-only .nccr-campaign-cta {
    margin-top: 12px;
}

.nccr-campaign-cta:hover,
.nccr-campaign-cta:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 240, 184, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.nccr-campaign-audio {
    order: 19;
    display: flex;
    justify-content: center;
    align-self: center;
    width: min(100%, 214px);
    margin-top: 22px;
}

.nccr-campaign-audio[hidden] {
    display: none;
}

.nccr-campaign-audio-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 42px;
    padding: 9px 16px 10px;
    border: 1px solid rgba(255, 240, 184, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--nccr-secondary-soft, #fff0b8);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nccr-campaign-audio-toggle:hover,
.nccr-campaign-audio-toggle:focus-visible,
.nccr-campaign-audio-toggle.is-playing {
    background: rgba(255, 240, 184, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 240, 184, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    outline: none;
    transform: translateY(-1px);
}

.nccr-campaign-audio-toggle[disabled] {
    cursor: pointer;
    opacity: 0.72;
}

.nccr-campaign-audio-toggle.is-loading {
    cursor: pointer;
    opacity: 0.9;
}

.nccr-campaign-audio-toggle.is-loading .nccr-campaign-audio-icon {
    animation: nccr-audio-pulse 950ms ease-in-out infinite;
}

.nccr-campaign-audio-toggle.is-error {
    border-color: rgba(255, 210, 210, 0.62);
    color: #ffd2d2;
}

.nccr-campaign-audio-icon {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.nccr-campaign-audio-icon::before,
.nccr-campaign-audio-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.nccr-campaign-audio-icon::before {
    right: 5px;
}

.nccr-campaign-audio-icon::after {
    left: 5px;
}

.nccr-campaign-audio-toggle.is-playing .nccr-campaign-audio-icon {
    box-shadow: 0 0 0 6px rgba(255, 240, 184, 0.1);
}

.nccr-campaign-close {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 240, 184, 0.42);
    border-radius: 50%;
    background: rgba(5, 32, 37, 0.82);
    color: var(--nccr-secondary-soft, #fff0b8);
    cursor: pointer;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nccr-campaign-close:hover,
.nccr-campaign-close:focus-visible {
    background: rgba(7, 63, 70, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 240, 184, 0.16);
    outline: none;
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .nccr-overlay {
        align-items: end;
        padding: 12px;
    }

    .nccr-overlay.nccr-mobile-position-top,
    .nccr-campaign-overlay.nccr-mobile-position-top {
        align-items: start;
    }

    .nccr-overlay.nccr-mobile-position-center,
    .nccr-campaign-overlay.nccr-mobile-position-center {
        align-items: center;
    }

    .nccr-overlay.nccr-mobile-position-bottom,
    .nccr-campaign-overlay.nccr-mobile-position-bottom {
        align-items: end;
    }

    .nccr-modal {
        width: min(92vw, 370px);
        max-height: 82vh;
        overflow-y: auto;
        padding: 22px 16px 18px;
        border-radius: var(--nccr-radius-md, 8px);
        box-shadow: 0 18px 44px rgba(5, 22, 26, 0.32);
        -webkit-overflow-scrolling: touch;
    }

    .nccr-modal.has-art {
        padding: 0;
    }

    .nccr-modal.has-art .nccr-content {
        padding: 17px 16px 18px;
    }

    .nccr-art img {
        height: 92px;
    }

    .nccr-modal.is-art-mobile-hidden .nccr-art {
        display: none;
    }

    .nccr-modal h2 {
        margin-top: 10px;
        font-size: 21px;
    }

    .nccr-body {
        margin-bottom: 13px;
        font-size: 14px;
        line-height: 1.65;
    }

    .nccr-badge {
        min-height: 28px;
        padding: 4px 12px 5px;
        font-size: 12px;
    }

    .nccr-form input[type="tel"] {
        min-height: 46px;
        padding: 10px 12px;
    }

    .nccr-consent {
        margin: 10px 0 13px;
        font-size: 12px;
        line-height: 1.55;
    }

    .nccr-submit {
        min-height: 48px;
        font-size: 15px;
    }

    .nccr-close {
        top: 8px;
        left: 8px;
        width: 46px;
        height: 46px;
        font-size: 32px;
    }

    .nccr-browse-reminder,
    .nccr-browse-reminder.is-floating {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 13px 44px 13px 13px;
    }

    .nccr-browse-copy {
        font-size: 13px;
    }

    .nccr-browse-cta {
        width: 100%;
        min-height: 42px;
    }

    .nccr-campaign-overlay {
        align-items: end;
        padding: 10px;
    }

    .nccr-campaign-modal,
    .nccr-campaign-modal.has-art,
    .nccr-campaign-modal.is-text-only {
        display: block;
        width: min(94vw, 380px);
        max-height: 84vh;
        overflow-y: auto;
        border-radius: var(--nccr-radius-md, 8px);
        -webkit-overflow-scrolling: touch;
    }

    .nccr-campaign-art {
        min-height: auto;
        height: 150px;
    }

    .nccr-campaign-content,
    .nccr-campaign-modal.is-text-only .nccr-campaign-content {
        min-height: auto;
        padding: 22px 17px 18px;
    }

    .nccr-campaign-badge {
        min-height: 28px;
        padding: 4px 12px 5px;
        font-size: 12px;
    }

    .nccr-campaign-content h2 {
        margin-top: 11px;
        font-size: 23px;
    }

    .nccr-campaign-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .nccr-campaign-audio {
        width: 100%;
        margin-top: 18px;
    }

    .nccr-campaign-cta {
        width: 100%;
        min-height: 50px;
        margin-top: 10px;
        font-size: 14px;
    }

    .nccr-campaign-audio-toggle {
        width: 100%;
        min-height: 42px;
    }

    .nccr-campaign-close {
        top: 8px;
        left: 8px;
        width: 46px;
        height: 46px;
        font-size: 32px;
    }
}

@media (min-width: 680px) {
    .nccr-modal.is-art-side {
        display: grid;
        grid-template-columns: 250px 1fr;
        align-items: stretch;
        direction: ltr;
    }

    .nccr-modal.is-art-side .nccr-art {
        min-height: 100%;
        border-right: 1px solid rgba(255, 240, 184, 0.26);
    }

    .nccr-modal.is-art-side .nccr-art img {
        height: 100%;
        min-height: 420px;
    }

    .nccr-modal.is-art-side .nccr-content {
        direction: rtl;
        padding: 32px 30px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nccr-overlay,
    .nccr-modal,
    .nccr-modal::before,
    .nccr-close,
    .nccr-submit,
    .nccr-browse-reminder,
    .nccr-browse-cta,
    .nccr-campaign-overlay,
    .nccr-campaign-modal,
    .nccr-campaign-modal::before,
    .nccr-campaign-close,
    .nccr-campaign-cta,
    .nccr-campaign-cta::after,
    .nccr-campaign-audio-toggle,
    .nccr-campaign-audio-toggle.is-loading .nccr-campaign-audio-icon {
        animation: none !important;
        transition: none !important;
    }
}

@keyframes nccr-shine {
    0%,
    58% {
        opacity: 0;
        transform: translateX(88%) rotate(14deg);
    }

    72% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-88%) rotate(14deg);
    }
}

@keyframes nccr-campaign-cta-shine {
    0%,
    48% {
        opacity: 0;
        transform: translateX(95%) rotate(13deg);
    }

    62% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-95%) rotate(13deg);
    }
}

@keyframes nccr-audio-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 240, 184, 0.18);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 240, 184, 0.08);
    }
}
