/* Tracking Specific Styles */
.tracking-hero-icon {
    position: relative;
    display: inline-block;
    padding: 2rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.tracking-hero-icon i {
    font-size: 3rem;
    color: #0d6efd;
    opacity: 0.8;
}

.order-progress-wrap {
    padding: 2rem 0;
}

.progress-node {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progress-node.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.15);
}

.progress-track {
    height: 6px;
    background: #e9ecef;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #0d6efd;
    transition: width 1s ease-in-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tracking-card {
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tracking-timeline {
    position: relative;
    padding-left: 1rem;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
}
