/* --- POPUP OVERLAY --- */
.hs-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.hs-popup.open {
    display: flex;
}

/* --- POPUP BOX --- */
.hs-popup-content {
    background: #ffffff;
    padding: 40px 45px;
    width: 95%;
    max-width: 560px;
    border-radius: 14px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.25);
    position: relative;
    animation: fadeIn 0.25s ease-out;
    font-family: Arial, sans-serif;
}

/* --- CLOSE BUTTON --- */
.hs-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

/* --- TITLE --- */
.hs-popup-title {
    margin: 0 0 25px 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

/* --- FORM LABELS --- */
.hs-popup-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

/* --- INPUTS --- */
.hs-popup-form input,
.hs-popup-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 17px;
    background: #fafafa;
}

.hs-popup-form textarea {
    min-height: 130px;
}

/* --- DSGVO CHECKBOX --- */
.hs-popup-dsgvo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 25px;
}

.hs-popup-dsgvo input {
    margin-top: 4px;
}

/* --- SUBMIT BUTTON --- */
.hs-popup-submit {
    width: 100%;
    padding: 16px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hs-popup-submit:hover {
    background: #005bb5;
}

/* --- SUCCESS MESSAGE --- */
.hs-popup-success {
    padding: 25px;
    background: #e6ffe6;
    border: 1px solid #00a300;
    border-radius: 10px;
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
}

/* --- ANIMATION --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Größere Eingabefelder */
.hs-popup-form input {
    padding: 18px 20px;
    font-size: 18px;
}

/* DSGVO Checkbox schöner ausrichten */
.hs-popup-dsgvo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.hs-popup-dsgvo input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Scroll-to-Top Button – kleiner + höher */
#hs-scroll-top {
    position: fixed;
    bottom: 90px; /* höher gesetzt, damit er über dem Chat bleibt */
    right: 25px;
    width: 40px;   /* kleiner */
    height: 40px;  /* kleiner */
    background: #4a4a4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px; /* kleinerer Pfeil */
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,255,255,0.35);
    z-index: 99999;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#hs-scroll-top:hover {
    background: #6a6a6a;
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(255,255,255,0.55);
}

#hs-scroll-top.hidden {
    display: none;
}

