/* Floating Button */
#waButton {
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 10px;
    bottom: 40px;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 50%;
    background: #516c36;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 9999;
}
@media only screen and (min-width: 768px) {
    #waButton {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    #waButton {
        right: 30px;
        bottom: 30px;
    }
}

#waButton:hover {
    transform: scale(1.05);
}

#waButton svg {
    width: 24px;
    height: 24px;
}

/* Popup */
#waPopup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 420px;
    max-width: calc(100% - 40px);
    background: #516c36;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 9999;
}

.wa-header {
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wa-title svg {
    width: 24px;
    height: 24px;
}

.close-btn {
    margin: 0px;
    padding: 0px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.wa-body {
    background: #f7f7f7;
    padding: 18px;
}

.wa-card {
    background: #fff;
    border-radius: 0 0 28px 28px;
    padding: 20px;
}

.message {
    display: inline-block;
    background: #ebebeb;
    padding: 14px 18px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: 15px;
}

.action {
    margin-top: 30px;
    text-align: right;
}

.action a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #516c36;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 40px;
    transition: 0.3s;
    font-size: 15px;
}

.action a:hover {
    background: #5d6443;
}

.action svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    #waButton {
        bottom: 20px;
        right: 20px;
    }

    #waPopup {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 15px;
    }
}
