.mythic-cart-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    place-items: center;
    padding: 20px;
}

.mythic-cart-popup.is-open {
    display: grid;
}

.mythic-cart-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
}

.mythic-cart-popup__content {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    padding: 35px;
    color: #ffffff;
    text-align: center;
    background: #121919;
    border: 1px solid #2edbd7;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

.mythic-cart-popup__content h2 {
    margin: 14px 0 10px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.25;
}

.mythic-cart-popup__content p {
    margin: 0 0 25px;
    color: #dce4e4;
    font-size: 16px;
}

.mythic-cart-popup__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #071313;
    font-size: 30px;
    font-weight: 800;
    background: #2edbd7;
    border-radius: 50%;
}

.mythic-cart-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    padding: 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mythic-cart-popup__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mythic-cart-popup__continue,
.mythic-cart-popup__checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.mythic-cart-popup__continue {
    color: #ffffff;
    background: transparent;
    border: 1px solid #2edbd7;
}

.mythic-cart-popup__checkout {
    color: #071313;
    background: #2edbd7;
    border: 1px solid #2edbd7;
}

.mythic-cart-popup__continue:hover,
.mythic-cart-popup__continue:focus {
    color: #071313;
    background: #2edbd7;
}

.mythic-cart-popup__checkout:hover,
.mythic-cart-popup__checkout:focus {
    color: #071313;
    background: #ffffff;
    border-color: #ffffff;
}

body.mythic-popup-open {
    overflow: hidden;
}

.woocommerce a.added_to_cart.wc-forward {
    display: none !important;
}

@media (max-width: 520px) {
    .mythic-cart-popup__content {
        padding: 30px 20px 22px;
    }

    .mythic-cart-popup__buttons {
        grid-template-columns: 1fr;
    }
}
