.site-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;

    .site-popup {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        max-width: 400px;
        text-align: center;
        position: relative;
        width: 100%;

        h3 {
            margin-bottom: 1rem;
        }

        .site-popup-buttons {
            gap: 0.8rem;

            .popup-btn {
                padding: 10px 20px;
                cursor: pointer;
                font-size: 16px;
                border-radius: 6px;
                align-items: center;
                color: #fff;
                justify-content: space-between;
                height: 66px;
                background: #6D4C41;

                &:hover {
                    opacity: 0.9;
                }

                &.popup-btn-primary {
                    background: black;
                }
            }
        }

        .site-popup-close {
            position: absolute;
            top: 8px;
            right: 10px;
            border: none;
            background: transparent;
            font-size: 20px;
            cursor: pointer;
        }
    }
}
