/* OMC Store Credit Frontend */
.omcsc-account{}
.omcsc-balance-box{background:linear-gradient(135deg,#1a1a2e,#374151);color:#fff;border-radius:10px;padding:24px;text-align:center;margin-bottom:20px}
.omcsc-balance-amount{font-size:36px;font-weight:700}
.omcsc-balance-label{font-size:13px;opacity:.7;margin-top:4px;text-transform:uppercase;letter-spacing:.5px}
.omcsc-redeem-section{background:#f9fafb;border:1px solid #e5e7eb;border-radius:6px;padding:16px 20px;margin-bottom:20px}
.omcsc-redeem-section h3{margin-top:0;font-size:15px}
/* Checkout */
.omcsc-checkout-credit{background:#f0fdf4;border:1px solid #86efac;border-radius:6px;padding:14px 16px;margin-bottom:16px}
.omcsc-checkout-credit h4{margin:0 0 8px;font-size:14px;color:#166534}

/* Order page credit notice */
.omcsc-order-credit-notice {
    display: flex;
    gap: 14px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-left: 4px solid #166534;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
    align-items: flex-start;
}
.omcsc-ocn-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.omcsc-ocn-content { flex: 1; }
.omcsc-ocn-content strong { font-size: 15px; color: #166534; display: block; margin-bottom: 4px; }
.omcsc-ocn-content p { margin: 0 0 6px; font-size: 13px; color: #374151; }
.omcsc-ocn-reason { color: #6b7280 !important; font-size: 12px !important; }
.omcsc-ocn-list { margin: 6px 0; padding-left: 16px; font-size: 12px; color: #555; }
.omcsc-ocn-link { font-size: 12px; color: #166534; font-weight: 600; text-decoration: underline; }

/* Transaction history list */
.omcsc-history-list { display: flex; flex-direction: column; gap: 2px; }
.omcsc-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: background .1s;
}
.omcsc-history-item:hover { background: #f9fafb; }
.omcsc-hi-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.omcsc-hi-content { flex: 1; min-width: 0; }
.omcsc-hi-reason { font-size: 13px; color: #1a1a2e; font-weight: 500; }
.omcsc-hi-reason a { color: #9ca3af; font-size: 11px; }
.omcsc-hi-meta { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.omcsc-hi-amount { font-size: 15px; font-weight: 700; flex-shrink: 0; }
