/* LS Production Estimator — Frontend
   ===================================
   Styles for the estimate row inside LS Totals Enhancer
   and Quick Ship badge overrides. */

/* Estimate row — sits between grand total and trust badges */
.ls-t-prod-time {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    margin: 0;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border: 1px solid #fde68a;
    border-radius: 10px;
    margin: 12px 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13.5px;
    color: #92400e;
}

.lspe-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.lspe-label {
    font-weight: 600;
    white-space: nowrap;
}

.lspe-value {
    font-weight: 700;
    color: #78350f;
}

/* Quick Ship badge styling in Select2 results */
.select2-results__option {
    /* Ensure the badge text is visible */
}

/* Responsive */
@media (max-width: 640px) {
    .ls-t-prod-time {
        padding: 12px 16px;
        margin: 10px 16px 0;
        font-size: 12.5px;
    }
}
