/* WooCommerce Smart Discount — Cart Styles */

/* ── Progress bars ── */
.wsd-progress-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wsd-progress-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
}

.wsd-progress-item.wsd-reached {
    background: #f0fdf4;
    border-color: #86efac;
}

.wsd-progress-label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.wsd-progress-label span {
    font-weight: 400;
    color: #6b7280;
}

.wsd-progress-item.wsd-reached .wsd-progress-label span {
    color: #15803d;
    font-weight: 600;
}

.wsd-progress-bar-bg {
    background: #e5e7eb;
    border-radius: 99px;
    height: 7px;
    overflow: hidden;
}

.wsd-progress-bar {
    background: #16a34a;
    height: 7px;
    border-radius: 99px;
    transition: width 0.4s ease;
}

/* ── Coupon box ── */
.wsd-coupon-box {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.wsd-coupon-box h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: .75rem;
    color: #374151;
}

.wsd-coupon-row {
    display: flex;
    gap: 8px;
}

.wsd-coupon-row input {
    flex: 1;
    padding: 7px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.wsd-coupon-row button,
#wsd-coupon-btn {
    padding: 7px 16px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.wsd-coupon-row button:hover { background: #1e40af; }

.wsd-coupon-applied {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #15803d;
}

.wsd-remove-coupon {
    background: none;
    border: 1px solid #dc2626;
    color: #dc2626;
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px;
}

#wsd-coupon-msg {
    margin-top: 6px;
    font-size: 13px;
}
#wsd-coupon-msg.success { color: #15803d; }
#wsd-coupon-msg.error   { color: #dc2626; }

/* ── Free item badge ── */
.wsd-free-badge {
    display: inline-block;
    background: #dcfce7;
    color: #14532d;
    font-size: 11px;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: 6px;
}

.wsd-free-qty {
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
}

/* ── Free shipping progress bar (special styling) ── */
.wsd-ship-bar .wsd-progress-bar {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
}

.wsd-ship-bar {
    border-color: #bfdbfe;
}

.wsd-ship-bar.wsd-reached {
    background: #eff6ff;
    border-color: #93c5fd;
}

.wsd-ship-bar .wsd-progress-label {
    font-weight: 600;
}

.wsd-ship-bar .wsd-progress-label span {
    color: #1d4ed8;
}

.wsd-ship-bar.wsd-reached .wsd-progress-label span {
    color: #1d4ed8;
    font-weight: 700;
}
