/* Track Box */
.track-box{
    padding:20px;
    background:#ffffff;
    color:#333;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    max-width:900px;
    margin:auto;
    margin-top:20px;
    text-align:center;
}
.track-box h2{
    font-size: 42px;
    font-weight: 700;
}
.track-box input[type="text"]{
    width:70%;
    color: #111111;
    padding:18px 15px;
    margin-bottom:15px;
    border:1px solid #cccccc;
    border-radius:5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all .1s ease-in-out;
    outline: none;
}
.track-box button{
    width:60%;
    padding:18px 15px;
    background:#00A63E;
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
    text-align: center;
    font-size: 18px;
}
.track-box button:hover{
    background:#00882f;
}
.order-info {
    text-align: left;
    margin-top: 25px;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.order-info h3,h4{
    margin-top:10px;
}
.product-list{
    display:flex;
    flex-wrap:wrap;
}
.product-item{
    width:100%;
    display: flex;
    margin:1%;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border:1px solid #eee;
}
.product-item img{
    width:80px;
    height:80px;
    object-fit:cover;
    margin-right:10px;
}
.product-info p{
    margin:3px 0;
}

.order-total{
    font-weight:600;
    margin-top:10px;
}
/* Timeline */
.order-timeline{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
    position:relative;
    padding-top:20px;
}
.order-timeline:before{
    content:'';
    position:absolute;
    top:36px;
    left:10%;
    width:80%;
    height:3px;
    background:#ddd;
    z-index:1;
}
.timeline-step{
    text-align:center;
    flex:1;
    position:relative;
    z-index:2;
}
.circle{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#ddd;
    line-height:32px;
    color:#fff;
    margin:auto;
    font-weight:600;
}
.timeline-step.active .circle{
    background:#00A63E;
}
.timeline-step.cancelled .circle{
    background:#761919;
}
.label{
    font-size:12px;
    margin-top:5px;
}
.timeline-step.cancelled .label{
    color:#000000;
}
.order-timeline .date{
    font-size:11px;
    color:#777;
    margin-top:4px;
}
.error {
    margin-top: 20px;
    background: #ffe5e5;
    padding: 15px;
    border-radius: 8px;
    color: red;
}

/* Responsive */
@media(max-width:767px){
    .product-item{
        width:100%;
    }
    .track-box{
    padding:6px 6px 30px 10px;
    }
    .track-box input[type="text"]{
        width:90%;
}
    .track-box button{
        width:90%;
    }
    .order-info{
        padding:10px;
    }
    .track-box h2{
    font-size: 35px;
    font-weight: 700;
    }
}