                   #consent-popup {
                    position: fixed;
                    left: 0;
                    right: 0;
                    bottom: 20px;
                    display: flex;
                    justify-content: center;
                    pointer-events: none;
                    z-index: 9999;
                    opacity: 0;
                    transform: translateY(8px);
                    transition:
                        opacity 0.25s ease,
                        transform 0.25s ease;
                }

                .consent-inner {
                    pointer-events: auto;
                    background: #ffffff;
                    color: #111;
                    max-width: 760px;
                    width: calc(100% - 40px);
                    padding: 20px 28px;
                    border-radius: 10px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;
                    font-family: "Open Sans", "Roboto", Arial, sans-serif;
                }

                .consent-inner p {
                    margin: 0;
                    font-size: 16px;
                    line-height: 1.4;
                    color: #222;
                }

                #consent-accept {
                    border: none;
                    background: #0088cc;
                    color: #fff;
                    padding: 10px 26px;
                    border-radius: 8px;
                    font-size: 15px;
                    cursor: pointer;
                    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
                    transition:
                        transform 0.15s ease,
                        box-shadow 0.15s ease;
                }

                #consent-accept:active {
                    transform: translateY(1px);
                }
                #consent-accept:focus {
                    outline: 3px solid rgba(0, 136, 204, 0.18);
                    outline-offset: 2px;
                }

                @media (max-width: 420px) {
                    .consent-inner {
                        padding: 14px;
                        border-radius: 8px;
                        gap: 12px;
                    }
                    .consent-inner p {
                        font-size: 14px;
                    }
                    #consent-accept {
                        padding: 9px 20px;
                        font-size: 14px;
                    }
                }

                .overlay {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 99999;
            }

            .popup {
                position: relative;
                background: #fff;
                padding: 25px 30px 30px;
                border-radius: 12px;
                width: 320px;
                max-width: calc(100% - 40px);
                box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
                animation: popupFade 0.18s ease;
                font-family:
                    system-ui,
                    -apple-system,
                    "Segoe UI",
                    Roboto,
                    "Helvetica Neue",
                    Arial;
            }

            @keyframes popupFade {
                from {
                    opacity: 0;
                    transform: translateY(6px) scale(0.98);
                }
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            .close-icon {
                position: absolute;
                top: 10px;
                right: 12px;
                background: none;
                border: none;
                font-size: 20px;
                color: #444;
                cursor: pointer;
                padding: 4px;
                line-height: 1;
            }
            .close-icon:focus {
                outline: 2px solid rgba(0, 136, 204, 0.18);
                border-radius: 4px;
            }

             /* Попап */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .popup-content {
      position: relative;
      background: #fff;
      padding: 30px 20px;
      border-radius: 8px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .popup-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }