.pwa-push-subscribe-container {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.pwa-push-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.pwa-push-subscribe-btn:hover {
    background: #444;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}

.pwa-push-subscribe-btn.pwa-push-subscribed {
    background: #4caf50;
}

.pwa-push-subscribe-btn.pwa-push-subscribed:hover {
    background: #e53935;
}

.pwa-push-subscribe-btn.pwa-push-denied {
    background: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.pwa-push-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* =====================================================================
   Checkout page — inline push subscribe block (matches cabinet style)
   ===================================================================== */
.pwa-push-checkout-block {
    margin: 16px 0;
    text-align: center;
}
.pwa-push-checkout-block__text {
    font-size: 13px;
    color: #888;
    margin: 0 0 8px;
}
.pwa-push-checkout-btn {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    border: 1.5px solid #4caf50 !important;
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: none !important;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.pwa-push-checkout-btn:hover {
    background: #c8e6c9 !important;
    color: #1b5e20 !important;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}
.pwa-push-checkout-btn.pwa-push-subscribed {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
    color: #888 !important;
}
.pwa-push-checkout-btn.pwa-push-subscribed:hover {
    background: #eee !important;
    border-color: #bbb !important;
    color: #666 !important;
}
.pwa-push-checkout-btn.pwa-push-denied {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
    color: #999 !important;
    cursor: not-allowed;
}
.pwa-push-checkout-btn .pwa-push-btn-text {
    display: inline !important;
}
.pwa-push-checkout-btn .pwa-push-icon {
    flex-shrink: 0;
    stroke: currentColor;
}

@media (max-width: 767px) {
    .pwa-push-subscribe-btn:not(.pwa-push-checkout-btn) .pwa-push-btn-text {
        display: none;
    }
    .pwa-push-subscribe-btn:not(.pwa-push-checkout-btn) {
        padding: 12px;
        border-radius: 50%;
    }
}
