/* SB Role Discount – Front-end Styles */

/* Strikethrough original + discounted price badge */
.sbrd-price-badge {
    display: inline-block;
    background: #eabb69;
    color: #060a1b;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-left: 4px;
}

/* Make sure WooCommerce del/ins look right */
.woocommerce-page del .woocommerce-Price-amount,
.woocommerce del .woocommerce-Price-amount {
    opacity: 0.55;
    font-size: 0.9em;
}
.woocommerce-page ins,
.woocommerce ins {
    text-decoration: none;
    font-weight: 700;
}

.sbrd-field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    transition: border-color .15s;
}
.sbrd-field select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30,64,175,.12);
}
.sbrd-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* Cart/Checkout notices */
.sbrd-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}
.sbrd-notice .sbrd-icon { font-size: 20px; flex-shrink: 0; }

.sbrd-active {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.sbrd-pending {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
}

/* My Account field */
.sbrd-account-field {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}
.sbrd-account-field legend {
    font-weight: 600;
    font-size: 15px;
    padding: 0 6px;
    color: #111827;
}
.sbrd-approved-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.sbrd-pending-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
