/* Add to Home Screen Banner */
.pwpub-a2hs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    z-index: 999999;
    padding: 14px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.pwpub-a2hs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
    gap: 14px;
}
.pwpub-a2hs-text {
    font-size: 0.95rem;
    flex: 1;
}
.pwpub-a2hs-btn {
    background: #46d160;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.pwpub-a2hs-btn:hover {
    background: #3bbf56;
}
.pwpub-a2hs-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
}
.pwpub-a2hs-close:hover {
    color: #fff;
}
@media (max-width: 480px) {
    .pwpub-a2hs-inner {
        flex-direction: column;
        text-align: center;
    }
}
