#popup_background_123456 {
    display: none; /* Start hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

#popup_123456 {
    display: none; /* Start hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 10000;
    text-align: center;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#popup_123456 img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    object-fit: contain;
    cursor: pointer;
}

#popup_background_szh {
    display: none; /* Start hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

#popup_szh {
    display: none; /* Start hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 10000;
    text-align: center;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#popup_szh img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    object-fit: contain;
}

.popup_buttons {
    position: absolute;
    bottom: 20px;
    left: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup_button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14.09px;
    border-radius: 30px;
    background-color: #db232a;
    color: #fdfdfd;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-right: 0;
    width: 500px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.popup_button_szh {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14.09px;
    border-radius: 8px;
    background-color: #db232a;
    color: #fdfdfd;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-right: 0;
    width: 500px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 999999;
}

.popup_button_szh:hover {
    background-color: darkred;
    color: white;
    text-decoration: none;
}

.popup_button:hover {
    background-color: darkred;
    color: white;
    text-decoration: none;
}

@media (max-width: 600px) {
    .popup_button {
        font-size: 12px;
        padding: 8px 16px;
        width: 250px;
    }

    .popup_button_szh {
        font-size: 12px;
        padding: 8px 16px;
        width: 250px;
    }
    .popup_buttons {
        position: absolute;
        bottom: 10px;
        left: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}