/* ══════════════════════════════════════════════
   NELLCA DELIVERY – Kundspårning CSS
   ══════════════════════════════════════════════ */

.ndel-tracking-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* ── Laddar ── */
.ndel-tracking-loading {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}
.ndel-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e8e8e8;
    border-top-color: #111;
    border-radius: 50%;
    animation: ndel-spin 0.7s linear infinite;
    margin: 0 auto 16px;
}
@keyframes ndel-spin { to { transform: rotate(360deg); } }

/* ── Fel ── */
.ndel-tracking-error {
    text-align: center;
    padding: 60px 20px;
    color: #ef4444;
}
.ndel-tracking-error .fa { font-size: 40px; margin-bottom: 12px; display: block; }

/* ── Statussteg ── */
.ndel-track-status {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}
.ndel-track-steps {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.ndel-track-steps::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #e8e8e8;
    z-index: 0;
}
.ndel-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ndel-step__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 2px solid #fff;
    margin-bottom: 6px;
    transition: background .3s;
}
.ndel-step.done .ndel-step__dot    { background: #22c55e; }
.ndel-step.active .ndel-step__dot  { background: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,.2); }
.ndel-step__label {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    font-weight: 600;
}
.ndel-step.done .ndel-step__label,
.ndel-step.active .ndel-step__label { color: #333; }

/* ── Adress ── */
.ndel-track-address {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

/* ── Karta ── */
.ndel-track-map {
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    margin-bottom: 16px;
}

/* ── Levererad-banner ── */
.ndel-track-delivered {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.ndel-track-delivered .fa {
    font-size: 28px;
    color: #22c55e;
    flex-shrink: 0;
}
.ndel-track-delivered strong { display: block; font-size: 15px; color: #111; }
.ndel-track-delivered span   { font-size: 13px; color: #666; }

/* ── Footer ── */
.ndel-track-footer {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.ndel-track-footer a { color: #555; }
