.frontpage .popup-container {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: rgba(18, 27, 24, 0.32);
}

.frontpage .popup-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 540px;
    padding: 32px 32px 30px;
    border: 1px solid rgba(235, 159, 79, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 205, 128, 0.52), transparent 38%),
        radial-gradient(circle at top right, rgba(255, 239, 191, 0.68), transparent 34%),
        linear-gradient(145deg, #fffdf7 0%, #fff5e8 100%);
    box-shadow:
        0 30px 80px rgba(42, 28, 7, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.frontpage .popup-header {
    display: block;
    width: calc(100% + 64px);
    max-width: none;
    margin: -32px -32px 22px;
    border-radius: 28px 28px 20px 20px;
    object-fit: cover;
}

.frontpage .popup-banner::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    border: 1px solid rgba(214, 137, 43, 0.12);
    border-radius: 20px;
    pointer-events: none;
}

.frontpage .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #6f5a46;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.frontpage .popup-close:hover {
    background: #ffffff;
    color: #1f1a14;
    transform: scale(1.04);
}

.frontpage .paas-popup {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: #2e2418;
}

.frontpage .popup-pasen__eyebrow {
    margin: 0 0 10px;
    color: #b96a2f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.frontpage .popup-container h2 {
    margin: 0 auto;
    color: #6c8f45 !important;
    font-family: "Gordita Black", "Inter", sans-serif;
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 430px;
}

.frontpage .popup-pasen__sub {
    margin: 14px 0 0;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 500;
    color: #6a5848;
}

.frontpage .popup-button {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-height: 54px;
    margin-top: 28px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f18c45 0%, #d96a25 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 54px;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(217, 106, 37, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-align: center;
}

.frontpage .popup-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(217, 106, 37, 0.34);
    filter: saturate(1.05);
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .frontpage .popup-container {
        padding: 18px;
    }

    .frontpage .popup-banner {
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .frontpage .popup-header {
        width: calc(100% + 44px);
        margin: -24px -22px 18px;
        border-radius: 24px 24px 18px 18px;
    }

    .frontpage .popup-banner::after {
        top: 12px;
        right: 12px;
        bottom: 12px;
        left: 12px;
        border-radius: 18px;
    }

    .frontpage .popup-container h2 {
        font-size: 32px;
        line-height: 1.14;
    }

    .frontpage .popup-pasen__sub {
        font-size: 17px;
    }

    .frontpage .popup-button {
        display: block;
        width: 100%;
    }
}

@supports ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))) {
    .frontpage .popup-container {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
}
