.delivery-status { margin: 12px; }
.status-card { background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%); border-radius: var(--radius-md); padding: 24px; display: flex; align-items: center; gap: 20px; color: white; }
.status-icon { font-size: 3rem; }
.status-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.status-info p { font-size: 0.95rem; opacity: 0.9; }
.delivery-timeline { margin: 12px; background: var(--bg-primary); border-radius: var(--radius-md); padding: 20px; }
.timeline-item { display: flex; gap: 16px; padding: 16px 0; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 7px; top: 40px; bottom: -10px; width: 2px; background: var(--border-color); }
.timeline-item.active .timeline-dot { background: var(--primary); }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--border-color); flex-shrink: 0; margin-top: 2px; }
.timeline-content { display: flex; flex-direction: column; gap: 4px; }
.timeline-content .time { font-size: 0.85rem; color: var(--text-tertiary); }
.timeline-content .text { font-size: 0.95rem; color: var(--text-primary); }
.delivery-info { margin: 12px; }
.info-card { background: var(--bg-primary); border-radius: var(--radius-md); padding: 16px; }
.info-card h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.info-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 0.9rem; }
.info-row span:first-child { color: var(--text-tertiary); }
.info-row span:last-child, .phone { color: var(--text-primary); }
.phone { color: var(--primary); }
.delivery-map { margin: 12px; }
.map-placeholder { height: 200px; background: var(--bg-secondary); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-tertiary); }
.map-placeholder span { font-size: 3rem; margin-bottom: 8px; }
.delivery-actions { position: fixed; bottom: 0; left: 0; right: 0; padding: 16px; background: var(--bg-primary); display: flex; gap: 12px; box-shadow: 0 -2px 10px rgba(0,0,0,0.08); }
.delivery-actions button { flex: 1; padding: 14px; border-radius: var(--radius-xl); font-size: 1rem; }
.btn-contact { background: var(--primary); color: white; }
.btn-safe { background: var(--bg-secondary); color: var(--text-primary); }
