/* BEUNIQ Points & Membership */
.bpm-tier-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}
.bpm-tier-icon.bpm-tier-gold { background: #C9A23A; }

/* Dashboard badge */
.bpm-tier-badge {
    margin: 20px 0 24px;
}
.bpm-tier-badge a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid #E5E1DE;
    background: #F8F5F4;
    color: #1E1810;
    transition: all .15s;
}
.bpm-tier-badge a:hover { background: #fff; border-color: #1E1810; }
.bpm-tier-badge-label { color: #888; font-size: 13px; }
.bpm-tier-badge strong { font-family: 'Open Sans', sans-serif; font-size: 16px; font-weight: 700; }

/* Membership current card */
.bpm-current-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    color: #fff;
    border-radius: 0;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}
.bpm-tier-bg-family { background: #01B8C9; }
.bpm-tier-bg-silver { background: #9E9E9E; }
.bpm-tier-bg-gold   { background: #C9A23A; }
.bpm-tier-bg-vip    { background: #111111; }

.bpm-current-left { display: flex; align-items: center; gap: 18px; }
.bpm-current-label { font-family: 'Open Sans', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: 1px; }
.bpm-current-sub { font-size: 14px; opacity: .85; margin-top: 2px; }
.bpm-current-right { text-align: right; font-size: 14px; line-height: 1.8; }
.bpm-current-right span { opacity: .85; margin-right: 8px; }
.bpm-current-right strong { font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 700; margin-left: 8px; }

/* Progress bar */
.bpm-progress { margin: 0 0 36px; }
.bpm-progress-bar {
    height: 8px; background: #eee; position: relative; overflow: hidden;
}
.bpm-progress-bar span {
    display: block; height: 100%; background: #FF7A3D; transition: width .3s;
}
.bpm-progress-labels {
    display: flex; justify-content: space-between;
    margin-top: 6px; font-size: 12px; color: #888;
}

/* Tier grid */
.bpm-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.bpm-tier-card {
    border: 1px solid #E5E1DE;
    background: #fff;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: all .15s;
}
.bpm-tier-card.is-current {
    border-color: #FF7A3D;
    box-shadow: 0 4px 16px rgba(255,122,61,0.15);
}
.bpm-tier-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; color: #1E1810;
    margin: 12px 0 4px; font-size: 18px;
}
.bpm-tier-name { color: #888; font-size: 12px; margin-bottom: 12px; }
.bpm-tier-desc { color: #575250; font-size: 13px; margin-bottom: 10px; word-break: keep-all; }
.bpm-tier-rate { color: #1E1810; font-size: 13px; margin-bottom: 10px; }
.bpm-tier-rate strong { color: #FF7A3D; font-size: 16px; }
.bpm-tier-note { color: #888; font-size: 11px; line-height: 1.5; }
.bpm-tier-now {
    position: absolute; top: 8px; right: 8px;
    background: #FF7A3D; color: #fff;
    padding: 2px 8px; font-size: 10px; font-weight: 600;
}

/* Coupon redeem box */
.bpm-coupon-redeem {
    background: #F8F5F4;
    border-left: 3px solid #FF7A3D;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.bpm-coupon-redeem h3 {
    margin: 0 0 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; color: #1E1810;
}
.bpm-coupon-form { display: flex; gap: 8px; }
.bpm-coupon-form input {
    flex: 1; padding: 10px 12px;
    border: 1px solid #E5E1DE; background: #fff; border-radius: 0;
    font-family: inherit; font-size: 14px;
}
.bpm-coupon-form button {
    padding: 10px 20px;
    background: #1E1810; color: #fff;
    border: none; cursor: pointer; font-size: 13px; border-radius: 0;
}
.bpm-coupon-form button:hover { background: #FF7A3D; }

/* Coupon redemption list */
.bpm-coupons-table { margin-bottom: 24px; }
.bpm-coupons-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    color: #1E1810;
    margin: 0 0 12px;
}
.bpm-amount-positive { color: #FF7A3D; font-weight: 700; }
.bpm-coupon-status-available { display: inline-block; padding: 3px 10px; background: #FF7A3D; color: #fff; font-size: 11px; font-weight: 600; }
.bpm-coupon-status-used { display: inline-block; padding: 3px 10px; background: #ddd; color: #666; font-size: 11px; font-weight: 600; }

/* Expiry/refund notice */
.bpm-expire-notice {
    background: #FFF8F3;
    border-left: 3px solid #FF7A3D;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.7;
    color: #575250;
}
.bpm-expire-notice strong { color: #1E1810; }
.bpm-expire-notice p { margin: 6px 0 0; }

@media (max-width: 900px) {
    .bpm-tier-grid { grid-template-columns: repeat(2, 1fr); }
    .bpm-current-card { flex-direction: column; text-align: center; padding: 24px 16px; }
    .bpm-current-right { text-align: center; }
    .bpm-current-label { font-size: 22px; }
}
@media (max-width: 480px) {
    .bpm-tier-grid { grid-template-columns: 1fr; }
}
