.track-orders-section {
    background: #fafafa;
    padding: 50px 15px;
    min-height: 80vh;
    margin-top: 15vh;
}

.orders-container {
    max-width: 900px;
    margin: auto;
}
body {
    -ms-overflow-style: none;  /* for IE & Edge */
    scrollbar-width: none;     /* for Firefox */
}

body::-webkit-scrollbar {
    display: none;  /* for Chrome, Safari, Opera */
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.search-box input {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.btn-primary {
    background: #f69b00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ffb83f;
}

.no-orders {
    padding: 12px 0;
    color: #777;
}

.order-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-date {
    color: #777;
    margin: 4px 0 0 0;
    font-size: 14px;
}

.price-status {
    text-align: right;
}

.amount {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.status {
    font-size: 14px;
    color: #666;
}

.order-items {
    margin-top: 12px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px dashed #eee;
}

.item-name {
    font-weight: 600;
}

.variant {
    color: #777;
}

.qty, .line-total {
    display: block;
    text-align: right;
}

.order-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary {
    border: 1px solid #f69b00;
    color: #f69b00;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f69b00;
    color: white;
}

.tracking {
    font-size: 14px;
    color: #444;
}
