#mekkawePushOverlay,
#mekkawePushOverlay * {
    box-sizing: border-box;
}

.mekkawe-push-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    background: rgba(10, 15, 8, 0);
    visibility: hidden;
    transition:
        background 0.35s ease,
        visibility 0.35s ease;
}

.mekkawe-push-overlay.is-visible {
    visibility: visible;
    background: rgba(10, 15, 8, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.mekkawe-push-sheet {
    width: 100%;
    max-width: 460px;
    padding: 10px 22px 22px;
    direction: rtl;
    text-align: center;
    background: #ffffff;
    border-radius: 26px 26px 20px 20px;
    box-shadow: 0 -14px 45px rgba(0, 0, 0, 0.22);
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    font-family: Tajawal, Cairo, Arial, sans-serif;
}

.mekkawe-push-overlay.is-visible
.mekkawe-push-sheet {
    transform: translateY(0);
    opacity: 1;
}

.mekkawe-push-handle {
    width: 52px;
    height: 5px;
    margin: 0 auto 17px;
    border-radius: 20px;
    background: #d7d7d7;
}

.mekkawe-push-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 13px;
    border-radius: 25px;
    background: #f0f8e9;
    box-shadow: 0 8px 20px rgba(114, 182, 38, 0.18);
}

.mekkawe-push-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.mekkawe-push-bell {
    position: absolute;
    left: -7px;
    top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #72b626;
    font-size: 17px;
    animation: mekkaweBellPulse 1.8s infinite;
}

.mekkawe-push-sheet h2 {
    margin: 0 0 8px;
    color: #20251d;
    font-size: 24px;
    font-weight: 800;
}

.mekkawe-push-description {
    max-width: 370px;
    margin: 0 auto;
    color: #646b60;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.mekkawe-push-message {
    min-height: 23px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
}

.mekkawe-push-message.info {
    color: #2563a8;
}

.mekkawe-push-message.success {
    color: #438415;
}

.mekkawe-push-message.error {
    color: #b42318;
}

.mekkawe-push-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mekkawe-push-actions button {
    min-height: 49px;
    border: 0;
    border-radius: 13px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}

.mekkawe-push-actions button:active {
    transform: scale(0.97);
}

.mekkawe-push-actions button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.mekkawe-push-enable {
    flex: 1.5;
    color: #ffffff;
    background: #72b626;
    box-shadow: 0 7px 16px rgba(114, 182, 38, 0.28);
}

.mekkawe-push-later {
    flex: 1;
    color: #50574d;
    background: #edf0eb;
}

.mekkawe-push-note {
    margin: 14px 0 0;
    color: #959b92;
    font-size: 12px;
    line-height: 1.5;
}

.mekkawe-push-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 7px;
    vertical-align: -3px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mekkawePushSpin 0.8s linear infinite;
}

@keyframes mekkawePushSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mekkaweBellPulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.08) rotate(-8deg);
    }

    50% {
        transform: scale(1.08) rotate(8deg);
    }

    75% {
        transform: scale(1.08) rotate(-5deg);
    }
}

@media (min-width: 700px) {
    .mekkawe-push-overlay {
        align-items: center;
    }

    .mekkawe-push-sheet {
        border-radius: 26px;
        transform: translateY(25px) scale(0.96);
    }

    .mekkawe-push-overlay.is-visible
    .mekkawe-push-sheet {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 420px) {
    .mekkawe-push-overlay {
        padding: 0;
    }

    .mekkawe-push-sheet {
        max-width: none;
        padding-right: 18px;
        padding-left: 18px;
        border-radius: 27px 27px 0 0;
    }
}