/*
 * WebSage Per-Product Currency — Front-end styles
 * WebSage Creative | websagecreative.com
 */

/* ── Dual price block — force stacked layout ── */
.wsage-ppc-dual-price {
    display: block !important;
    line-height: 1.4;
}

/* JMD — primary line, large and bold */
.wsage-ppc-primary {
    display: block !important;
    margin-bottom: 3px;
}

.wsage-ppc-jmd-amount {
    display: inline;
    font-size: 1.1em;
    font-weight: 700;
    color: inherit;
}

/* Sale price strikethrough inside JMD */
.wsage-ppc-jmd-amount del {
    opacity: 0.55;
    font-weight: 400;
    font-size: 0.85em;
}

.wsage-ppc-jmd-amount ins {
    text-decoration: none;
}

/* USD — secondary line, clearly smaller and muted */
.wsage-ppc-secondary {
    display: block !important;
    font-size: 0.75em;
    color: #888;
    font-weight: 400;
    line-height: 1.3;
}

.wsage-ppc-usd-amount {
    font-weight: 600;
    color: #666;
}

.wsage-ppc-usd-amount del {
    opacity: 0.55;
    font-weight: 400;
}

.wsage-ppc-usd-amount ins {
    text-decoration: none;
}

.wsage-ppc-usd-label {
    font-weight: 400;
}

/* ── Currency badge pill ── */
.wsage-ppc-badge {
    display: inline-block;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 1px 5px;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.8;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.wsage-ppc-badge--usd {
    background: #e8f4fd;
    color: #1a73e8;
    border: 1px solid #b3d4f5;
}

.wsage-ppc-badge--jmd {
    background: #fff3e0;
    color: #c45000;
    border: 1px solid #ffcc80;
}

/* ── Admin: hide JMD price wrap by default (shown by JS) ── */
.wsage-ppc-jmd-price-wrap {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .wsage-ppc-jmd-amount {
        font-size: 1em;
    }
    .wsage-ppc-secondary {
        font-size: 0.7em;
    }
}
