/* Woo Bulk Discount v1 — style.css */

/* ===== BADGE SALE ===== */
.wbd-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

/* ===== INFO TIẾT KIỆM (trang chi tiết) ===== */
.wbd-saving-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 8px 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wbd-saving-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wbd-saving-amount {
    font-size: 14px;
    color: #333;
}

.wbd-saving-amount strong {
    color: #E53935;
    font-size: 15px;
}

.wbd-saving-pct {
    font-size: 12px;
    color: #888;
}

/* ===== COUNTDOWN ===== */
.wbd-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 6px 14px;
    margin: 4px 0 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wbd-countdown-label {
    font-size: 12px;
    color: #b26a00;
    font-weight: 500;
}

.wbd-countdown-timer {
    font-size: 13px;
    font-weight: 700;
    color: #E53935;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
}

/* ===== COUPON BOX (giỏ hàng) ===== */
.wbd-coupon-box {
    background: #fdf8ff;
    border: 1px solid #e0d4f5;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wbd-coupon-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0 0 12px;
}

.wbd-coupon-form {
    display: flex;
    gap: 8px;
}

.wbd-coupon-input {
    flex: 1;
    border: 1px solid #d1c4e9;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color .2s;
}
.wbd-coupon-input:focus { border-color: #7C3AED; box-shadow: 0 0 0 2px rgba(124,58,237,.12); }

.wbd-btn-apply {
    background: #7C3AED;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.wbd-btn-apply:hover { background: #6D28D9; }
.wbd-btn-apply:disabled { background: #aaa; cursor: not-allowed; }

.wbd-coupon-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6f9f1;
    border: 1px solid #9FE1CB;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #1a6b4a;
}

.wbd-btn-remove {
    background: none;
    border: none;
    color: #E53935;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
}
.wbd-btn-remove:hover { text-decoration: underline; }

.wbd-coupon-msg { margin-top: 8px; min-height: 20px; }
.wbd-msg { font-size: 13px; }
.wbd-msg--success { color: #1D9E75; font-weight: 500; }
.wbd-msg--error   { color: #E53935; }
