.sppc-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba( 0, 0, 0, 0.55 );
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
}
.sppc-modal {
background: #fff;
border-radius: 10px;
max-width: 420px;
width: 100%;
padding: 28px 24px 22px;
position: relative;
box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.25 );
font-family: inherit;
text-align: center;
animation: sppc-pop 0.2s ease-out;
}
@keyframes sppc-pop {
from { transform: scale( 0.92 ); opacity: 0; }
to   { transform: scale( 1 ); opacity: 1; }
}
.sppc-close {
position: absolute;
top: 8px;
right: 12px;
background: none;
border: none;
font-size: 24px;
line-height: 1;
cursor: pointer;
color: #666;
}
.sppc-close:hover { color: #000; }
.sppc-message {
margin: 0 0 16px;
font-size: 18px;
}
.sppc-product {
display: flex;
align-items: center;
gap: 14px;
text-align: left;
background: #f8f8f8;
border-radius: 8px;
padding: 12px;
margin-bottom: 16px;
}
.sppc-product-image {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 6px;
flex-shrink: 0;
}
.sppc-product-name {
font-weight: 600;
margin: 0 0 4px;
}
.sppc-product-price {
margin: 0;
color: #333;
}
.sppc-coupon-note {
margin: 8px 0 0;
font-size: 13px;
color: #2a7a2a;
font-weight: 600;
}
.sppc-actions {
display: flex;
flex-direction: column;
gap: 8px;
}
.sppc-btn-accept {
width: 100%;
font-size: 15px;
padding: 10px 16px;
}
.sppc-btn-decline {
background: none;
border: none;
color: #777;
text-decoration: underline;
cursor: pointer;
font-size: 13px;
padding: 4px;
}
.sppc-feedback {
margin-top: 12px;
font-size: 13px;
color: #333;
}