/* =====================================
   PUSH NOTIFICATION POPUP STYLING
===================================== */
.si-push-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 340px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.15);
    border-radius: 6px;
    border-left: 4px solid var(--si-gold);
    display: flex;
    align-items: flex-start;
    padding: 16px;
    z-index: 999999;
    font-family: inherit;
}

.si-push-icon {
    width: 40px;
    height: 40px;
    background: rgba(176, 141, 87, 0.15);
    color: var(--si-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 14px;
}

.si-push-content {
    flex: 1;
}

.si-push-content h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--si-navy);
}

.si-push-content p {
    margin: 0 0 14px;
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--si-charcoal);
}

.si-push-actions {
    display: flex;
    gap: 12px;
}

/* Custom Checkbox/Radio Button Style */
.si-push-label {
    position: relative;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.si-push-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.si-custom-check {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.2s ease;
}

/* Allow State */
.si-allow input:checked ~ .si-custom-check,
.si-allow:hover .si-custom-check {
    background: var(--si-navy);
    border-color: var(--si-navy);
    color: #fff;
}

/* Reject State */
.si-reject input:checked ~ .si-custom-check,
.si-reject:hover .si-custom-check {
    background: #f5f5f5;
    border-color: #ccc;
    color: var(--si-charcoal);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .si-push-wrapper {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}