/**
 * Mindestbestellwert – Frontend Styles
 *
 * Apple-Style progress bar with smooth animations.
 * @package WooReadyDEB2B\Modules\MinOrder
 */

/* ── Progress Bar Container ───────────────────────────────────────────────── */

.wooready-mo-progress {
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
}

/* ── Header: Label + Missing Amount ───────────────────────────────────────── */

.wooready-mo-progress__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
}

.wooready-mo-progress__label {
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1F;
    line-height: 1.3;
}

.wooready-mo-progress__amounts {
    font-size: 13px;
    font-weight: 500;
    color: #FF9500;
    white-space: nowrap;
}

.wooready-mo-progress--complete .wooready-mo-progress__amounts {
    color: #34C759;
}

/* ── Track + Fill ─────────────────────────────────────────────────────────── */

.wooready-mo-progress__track {
    width: 100%;
    height: 8px;
    background: #F2F2F7;
    border-radius: 4px;
    overflow: hidden;
}

.wooready-mo-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9500, #FFCC00);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 0;
}

.wooready-mo-progress--complete .wooready-mo-progress__fill {
    background: linear-gradient(90deg, #34C759, #30D158);
}

/* ── Footer: Current / Required ───────────────────────────────────────────── */

.wooready-mo-progress__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #86868B;
}

.wooready-mo-progress__footer .woocommerce-Price-amount {
    font-weight: 500;
}

/* ── Elementor Widget Overrides ───────────────────────────────────────────── */

.elementor-widget-wooready-min-order-bar .wooready-mo-progress {
    margin-bottom: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .wooready-mo-progress {
        padding: 12px 16px;
    }

    .wooready-mo-progress__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .wooready-mo-progress__label {
        font-size: 13px;
    }

    .wooready-mo-progress__amounts {
        font-size: 12px;
    }
}

/* ── Reduced Motion ───────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .wooready-mo-progress__fill {
        transition: none;
    }
}
